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!)
A344493 a(n) = 1 + Sum_{k=0..n-6} binomial(n-5,k) * a(k). 4
1, 1, 1, 1, 1, 1, 2, 4, 8, 16, 32, 64, 135, 308, 767, 2059, 5821, 16963, 50312, 151189, 460981, 1433634, 4578748, 15110212, 51704075, 183423444, 672385222, 2534056116, 9768179743, 38357842713, 153070136072, 620275332697, 2553688944713, 10696223834397, 45654239302087 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,7
LINKS
FORMULA
G.f. A(x) satisfies: A(x) = (1 + x^5 * A(x/(1 - x))) / ((1 - x) * (1 + x^5)).
MATHEMATICA
a[n_] := a[n] = 1 + Sum[Binomial[n - 5, k] a[k] , {k, 0, n - 6}]; Table[a[n], {n, 0, 34}]
nmax = 34; A[_] = 0; Do[A[x_] = (1 + x^5 A[x/(1 - x)])/((1 - x) (1 + x^5)) + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
CROSSREFS
Sequence in context: A210543 A006211 A180209 * A275073 A264701 A195904
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 May 8 09:02 EDT 2024. Contains 372332 sequences. (Running on oeis4.)