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!)
A352308 Expansion of e.g.f. 1/(2 - exp(x) - x^4/24). 2
1, 1, 3, 13, 76, 551, 4803, 48833, 567465, 7418263, 107752293, 1721642143, 30008756055, 566650322031, 11523037802461, 251062618129063, 5834798259848815, 144078299659541361, 3766993649599221903, 103961442644871088897, 3020133228180079209075 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = binomial(n,4) * a(n-4) + Sum_{k=1..n} binomial(n,k) * a(n-k) for n > 3.
MATHEMATICA
m = 20; Range[0, m]! * CoefficientList[Series[1/(2 - Exp[x] - x^4/24), {x, 0, m}], x] (* Amiram Eldar, Mar 12 2022 *)
PROG
(PARI) my(N=40, x='x+O('x^N)); Vec(serlaplace(1/(2-exp(x)-x^4/24)))
(PARI) b(n, m) = if(n==0, 1, sum(k=1, n, (1+(k==m))*binomial(n, k)*b(n-k, m)));
a(n) = b(n, 4);
CROSSREFS
Cf. A352300.
Sequence in context: A162435 A059040 A220895 * A336421 A189239 A074530
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Mar 11 2022
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 23 14:32 EDT 2024. Contains 371914 sequences. (Running on oeis4.)