[go: up one dir, main page]

login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
Revision History for A352819 (Underlined text is an addition; strikethrough text is a deletion.)

Showing all changes.
A352819 G.f. A(x) satisfies: 1 - x = Sum_{n>=0} (x^(3*n) + (-1)^n*A(x))^n.
(history; published version)
#5 by Michael De Vlieger at Thu Apr 07 12:11:25 EDT 2022
STATUS

reviewed

approved

#4 by Joerg Arndt at Thu Apr 07 11:26:52 EDT 2022
STATUS

proposed

reviewed

#3 by Paul D. Hanna at Tue Apr 05 20:26:15 EDT 2022
STATUS

editing

proposed

#2 by Paul D. Hanna at Tue Apr 05 20:26:13 EDT 2022
NAME

allocated for Paul D. Hanna

G.f. A(x) satisfies: 1 - x = Sum_{n>=0} (x^(3*n) + (-1)^n*A(x))^n.

DATA

1, 1, 2, 3, 4, 6, 11, 19, 33, 60, 110, 201, 372, 696, 1305, 2456, 4654, 8855, 16896, 32366, 62217, 119910, 231704, 448879, 871531, 1695541, 3305057, 6454033, 12624041, 24731009, 48520396, 95324187, 187517959, 369329721, 728262059, 1437591201, 2840751293

OFFSET

1,3

FORMULA

G.f. A(x) satisfies:

(1) 1 - x = Sum_{n>=0} ( x^(3*n) + (-1)^n*A(x) )^n.

(2) 1 - x = Sum_{n>=0} x^(3*n^2) / (1 + (-1)^n*x^(3*n)*A(x))^(n+1).

EXAMPLE

G.f.: A(x) = x + x^2 + 2*x^3 + 3*x^4 + 4*x^5 + 6*x^6 + 11*x^7 + 19*x^8 + 33*x^9 + 60*x^10 + 110*x^11 + 201*x^12 + 372*x^13 + 696*x^14 + ...

where

1 - x = 1 + (x^3 - A(x)) + (x^6 + A(x))^2 + (x^9 - A(x))^3 + (x^12 + A(x))^4 + (x^15 - A(x))^5 + (x^18 + A(x))^6 + ...

Also,

1 - x = 1/(1 + A(x)) + x^3/(1 - x^3*A(x))^2 + x^12/(1 + x^6*A(x))^3 + x^27/(1 - x^9*A(x))^4 + x^48/(1 + x^12*A(x))^5 + ...

PROG

(PARI) {a(n) = my(A=[1]); for(i=1, n, A=concat(A, 0);

A[#A] = polcoeff( sum(m=0, #A, (x^(3*m) + (-1)^m*x*Ser(A))^m ), #A)); A[n+1]}

for(n=0, 40, print1(a(n), ", "))

(PARI) {a(n) = my(A=[1]); for(i=1, n, A=concat(A, 0);

A[#A] = polcoeff( sum(m=0, sqrtint(#A\3), x^(3*m^2)/(1 + (-x)^(3*m)*x*Ser(A))^(m+1) ), #A)); A[n+1]}

for(n=0, 40, print1(a(n), ", "))

CROSSREFS

Cf. A317997, A352818, A352820, A352821.

KEYWORD

allocated

nonn

AUTHOR

Paul D. Hanna, Apr 05 2022

STATUS

approved

editing

#1 by Paul D. Hanna at Mon Apr 04 19:52:34 EDT 2022
NAME

allocated for Paul D. Hanna

KEYWORD

allocated

STATUS

approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified August 30 00:57 EDT 2024. Contains 375520 sequences. (Running on oeis4.)