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!)
A360888 G.f. satisfies A(x) = 1 + x * (1 + x^2)^2 * A(x * (1 + x^2)). 2
1, 1, 1, 3, 6, 11, 29, 71, 179, 505, 1405, 4128, 12639, 39268, 127059, 420281, 1423787, 4955200, 17579398, 63796635, 236161396, 890544028, 3422553065, 13377869976, 53184706291, 214870633711, 881485304157, 3671033616614, 15507956547021, 66429816610908 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
FORMULA
a(0) = 1; a(n) = Sum_{k=0..floor(n-1)/2} binomial(n+1-2*k,k) * a(n-1-2*k).
PROG
(PARI) a_vector(n) = my(v=vector(n+1)); v[1]=1; for(i=1, n, v[i+1]=sum(j=0, (i-1)\2, binomial(i+1-2*j, j)*v[i-2*j])); v;
CROSSREFS
Cf. A360885.
Sequence in context: A365294 A221182 A109781 * A101958 A153982 A119367
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Feb 25 2023
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 29 10:04 EDT 2024. Contains 372113 sequences. (Running on oeis4.)