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!)
A351905 Expansion of e.g.f. exp(x * (1 - x^3)). 2
1, 1, 1, 1, -23, -119, -359, -839, 18481, 178417, 902161, 3318481, -69866279, -1011908039, -7204341143, -36194591159, 726745175521, 14326789219681, 131901636673441, 840736509931297, -16060449291985079, -408041402342457239, -4618341644958693959, -35691963052019431079 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,5
LINKS
FORMULA
a(n) = n! * Sum_{k=0..floor(n/4)} (-1)^k * binomial(n-3*k,k)/(n-3*k)!.
a(n) = a(n-1) - 4! * binomial(n-1,3) * a(n-4) for n > 3.
PROG
(PARI) my(N=40, x='x+O('x^N)); Vec(serlaplace(exp(x*(1-x^3))))
(PARI) a(n) = n!*sum(k=0, n\4, (-1)^k*binomial(n-3*k, k)/(n-3*k)!);
(PARI) a(n) = if(n<4, 1, a(n-1)-4!*binomial(n-1, 3)*a(n-4));
CROSSREFS
Sequence in context: A253679 A303411 A069756 * A337751 A362339 A358063
KEYWORD
sign
AUTHOR
Seiichi Manyama, Feb 25 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 May 4 04:33 EDT 2024. Contains 372227 sequences. (Running on oeis4.)