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!)
A344491 a(n) = 1 + Sum_{k=0..n-4} binomial(n-3,k) * a(k). 4
1, 1, 1, 1, 2, 4, 8, 16, 37, 97, 275, 810, 2468, 7840, 26182, 92047, 339029, 1299185, 5152244, 21091816, 89087652, 388318264, 1746324563, 8094422821, 38608318847, 189179752492, 950930369320, 4898477508796, 25841317224002, 139534769647745, 770795537345237, 4353368099507329 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,5
LINKS
FORMULA
G.f. A(x) satisfies: A(x) = (1 + x^3 * A(x/(1 - x))) / ((1 - x) * (1 + x^3)).
MATHEMATICA
a[n_] := a[n] = 1 + Sum[Binomial[n - 3, k] a[k] , {k, 0, n - 4}]; Table[a[n], {n, 0, 31}]
nmax = 31; A[_] = 0; Do[A[x_] = (1 + x^3 A[x/(1 - x)])/((1 - x) (1 + x^3)) + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
CROSSREFS
Sequence in context: A018536 A337673 A162428 * A028497 A197244 A350495
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, May 21 2021
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 25 07:53 EDT 2024. Contains 371964 sequences. (Running on oeis4.)