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!)
A359726 a(n) = A359720(n+3,2), for n >= 0. 2
1, 9, 49, 179, 711, 2390, 8361, 27082, 89389, 283170, 905307, 2825245, 8854116, 27341969, 84550769, 259046260, 793589833, 2416512240, 7352490113, 22279068811, 67435591018, 203525629398, 613550161717, 1845654390776, 5545861291941, 16637001197044, 49858191850323 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
The g.f. of A359720, G(x,y) = Sum_{n>=0} Sum_{k=0..floor(2*n/3)} A359720(n,k)*x^n*y^k, satisfies: x = Sum_{n=-oo..+oo} (-1)^n * x^n * (y + x^n)^n * G(x,y)^n.
LINKS
PROG
(PARI) /* a(n) = A359720(n+3, 2) */
{a(n) = my(A=[1]); for(i=1, n+3, A=concat(A, 0);
A[#A] = polcoeff(x - sum(m=-#A, #A, (-1)^m * x^m * (y + x^m +x*O(x^#A) )^m * Ser(A)^m ), #A-1) );
polcoeff( polcoeff(Ser(A), n+3, x), 2, y)}
for(n=0, 30, print1(a(n), ", "))
CROSSREFS
Sequence in context: A020245 A082608 A058031 * A228212 A027608 A354657
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jan 14 2023
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 April 19 18:05 EDT 2024. Contains 371798 sequences. (Running on oeis4.)