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!)
A346060 G.f. A(x) satisfies: A(x) = 1 - x * A(x/(1 - x)) / (1 - x)^5. 3
1, -1, -4, -5, 19, 119, 226, -789, -7747, -25333, 29428, 826059, 4651651, 7008499, -108045466, -1124213961, -4968432059, 6515205811, 300350438716, 2561696929271, 9034737779711, -58377397309001, -1213955186657474, -9784487206914505, -27228229386096731, 417997375131879519 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n+1) = -Sum_{k=0..n} binomial(n+4,k+4) * a(k).
MATHEMATICA
nmax = 25; A[_] = 0; Do[A[x_] = 1 - x A[x/(1 - x)]/(1 - x)^5 + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
a[0] = 1; a[n_] := a[n] = -Sum[Binomial[n + 3, k + 4] a[k], {k, 0, n - 1}]; Table[a[n], {n, 0, 25}]
CROSSREFS
Sequence in context: A154704 A047023 A032319 * A041255 A042835 A193964
KEYWORD
sign
AUTHOR
Ilya Gutkovskiy, Jul 03 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 23 06:45 EDT 2024. Contains 371906 sequences. (Running on oeis4.)