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!)
A367840 Expansion of e.g.f. 1/(2 + x - exp(4*x)). 3
1, 3, 34, 514, 10456, 265704, 8103120, 288302480, 11722944896, 536262671488, 27256865214208, 1523936708699904, 92949383868668928, 6141694449341637632, 437033351625771001856, 33319937543640487708672, 2709708041047388536274944 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(0) = 1; a(n) = -n * a(n-1) + Sum_{k=1..n} 4^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]=-i*v[i]+sum(j=1, i, 4^j*binomial(i, j)*v[i-j+1])); v;
CROSSREFS
Sequence in context: A134491 A045727 A105713 * A337388 A317653 A143638
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Dec 02 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 4 16:30 EDT 2024. Contains 372256 sequences. (Running on oeis4.)