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!)
A344490 a(n) = 1 + Sum_{k=0..n-3} binomial(n-2,k) * a(k). 4
1, 1, 1, 2, 4, 8, 20, 57, 171, 548, 1894, 6998, 27368, 112653, 486645, 2201162, 10397944, 51161168, 261571460, 1386846249, 7612315023, 43190917004, 252951090586, 1527112817054, 9492126182336, 60677428545165, 398489257136529, 2686088269505042, 18567557376240748 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
FORMULA
G.f. A(x) satisfies: A(x) = (1 + x^2 * A(x/(1 - x))) / ((1 - x) * (1 + x^2)).
MATHEMATICA
a[n_] := a[n] = 1 + Sum[Binomial[n - 2, k] a[k] , {k, 0, n - 3}]; Table[a[n], {n, 0, 28}]
nmax = 28; A[_] = 0; Do[A[x_] = (1 + x^2 A[x/(1 - x)])/((1 - x) (1 + x^2)) + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
CROSSREFS
Sequence in context: A113180 A000116 A302862 * A006407 A100447 A241891
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 1 10:38 EDT 2024. Contains 372163 sequences. (Running on oeis4.)