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!)
A360901 G.f. satisfies A(x) = 1 + x/(1 + x^4)^2 * A(x/(1 + x^4)). 2
1, 1, 1, 1, 1, -1, -4, -8, -13, -16, -3, 39, 126, 273, 411, 283, -619, -3149, -8201, -14496, -14368, 12984, 109920, 329552, 655436, 785583, -312525, -5009034, -16789151, -36433571, -48990090, 6965306, 286109557, 1044072824, 2414264953, 3490255449, -41486331 (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-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-3*j, j)*v[i-4*j])); v;
CROSSREFS
Cf. A360893.
Sequence in context: A311675 A311676 A311677 * A311678 A311679 A311680
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 August 21 12:17 EDT 2024. Contains 375353 sequences. (Running on oeis4.)