The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A368015 Expansion of e.g.f. 1/(1 - exp(2*x) + exp(3*x)). 0
1, -1, -3, 5, 81, 29, -4623, -20035, 415041, 4838909, -46093743, -1309934275, 3230184801, 419574363389, 2065056788337, -154120122603715, -2307971235744639, 59954627542249469, 1959892188447337617, -19474957767402204355, -1658215397958862557279 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(0) = 1; a(n) = Sum_{k=1..n} (2^k - 3^k) * binomial(n,k) * a(n-k).
PROG
(PARI) a_vector(n) = my(v=vector(n+1)); v[1]=1; for(i=1, n, v[i+1]=sum(j=1, i, (2^j-3^j)*binomial(i, j)*v[i-j+1])); v;
CROSSREFS
Cf. A355409.
Sequence in context: A122912 A062214 A323490 * A144617 A301492 A107655
KEYWORD
sign
AUTHOR
Seiichi Manyama, Dec 08 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 May 21 22:16 EDT 2024. Contains 372741 sequences. (Running on oeis4.)