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!)
A360899 G.f. satisfies A(x) = 1 + x/(1 + x^4) * A(x/(1 + x^4)). 3
1, 1, 1, 1, 1, 0, -2, -5, -9, -13, -10, 10, 60, 155, 281, 325, 5, -1214, -4094, -8786, -12571, -5642, 35339, 149264, 363838, 596714, 417156, -1373639, -7048541, -18932245, -34095357, -29271979, 68706873, 413250742, 1193425228, 2293494882, 2201716631 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,7
LINKS
FORMULA
a(0) = 1; a(n) = Sum_{k=0..floor((n-1)/4)} (-1)^k * binomial(n-1-3*k,k) * a(n-1-4*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)\4, (-1)^j*binomial(i-1-3*j, j)*v[i-4*j])); v;
CROSSREFS
Cf. A360891.
Sequence in context: A218706 A270950 A139405 * A104862 A190686 A247986
KEYWORD
sign
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 22:06 EDT 2024. Contains 372114 sequences. (Running on oeis4.)