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!)
A351970 a(0) = 1; a(n) = Sum_{k=0..floor(n/3)} binomial(n,3*k) * a(k). 4
1, 1, 1, 2, 5, 11, 22, 43, 85, 171, 351, 738, 1590, 3498, 7827, 17757, 40725, 94113, 218439, 507852, 1180395, 2739312, 6342084, 14642100, 33703182, 77344686, 176984406, 403901722, 919533655, 2089000936, 4737194867, 10726221713, 24257223605, 54805216567 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
FORMULA
G.f. A(x) satisfies: A(x) = A(x^3/(1 - x)^3) / (1 - x).
E.g.f.: exp(x) * Sum_{n>=0} a(n) * x^(3*n) / (3*n)!.
MATHEMATICA
a[0] = 1; a[n_] := a[n] = Sum[Binomial[n, 3 k] a[k], {k, 0, Floor[n/3]}]; Table[a[n], {n, 0, 33}]
nmax = 33; A[_] = 1; Do[A[x_] = A[x^3/(1 - x)^3]/(1 - x) + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
CROSSREFS
Sequence in context: A024493 A130781 A352045 * A071015 A293362 A362583
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Feb 26 2022
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 September 17 03:10 EDT 2024. Contains 375984 sequences. (Running on oeis4.)