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!)
A351971 a(0) = 1; a(n) = Sum_{k=0..floor(n/4)} binomial(n,4*k) * a(k). 4
1, 1, 1, 1, 2, 6, 16, 36, 72, 136, 256, 496, 992, 2016, 4096, 8256, 16513, 32913, 65689, 131785, 266482, 544230, 1124344, 2352188, 4984968, 10699656, 23244976, 51072256, 113370112, 253930816, 573005056, 1300390016, 2962852353, 6766967329, 15472840497 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,5
LINKS
FORMULA
G.f. A(x) satisfies: A(x) = A(x^4/(1 - x)^4) / (1 - x).
E.g.f.: exp(x) * Sum_{n>=0} a(n) * x^(4*n) / (4*n)!.
MATHEMATICA
a[0] = 1; a[n_] := a[n] = Sum[Binomial[n, 4 k] a[k], {k, 0, Floor[n/4]}]; Table[a[n], {n, 0, 34}]
nmax = 34; A[_] = 1; Do[A[x_] = A[x^4/(1 - x)^4]/(1 - x) + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
CROSSREFS
Sequence in context: A365079 A038503 A352066 * A365245 A079990 A127902
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 May 9 19:33 EDT 2024. Contains 372354 sequences. (Running on oeis4.)