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!)
A369751 Expansion of e.g.f. exp(1 - (1+x)^3). 2
1, -3, 3, 21, -63, -423, 1899, 15201, -72063, -832491, 3105459, 60090093, -110508543, -5224722831, -3828328677, 510699368313, 2104026859521, -52582823289171, -473592954347037, 5168227121231301, 92434892126557761, -357595962971807223, -17085974691782295477 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(0) = 1; a(n) = -3 * (n-1)! * Sum_{k=1..min(3,n)} binomial(2,k-1) * a(n-k)/(n-k)!.
a(n) = Sum_{k=0..n} 3^k * Stirling1(n,k) * A000587(k).
D-finite with recurrence a(n) +3*a(n-1) +6*(n-1)*a(n-2) +3*(n-1)*(n-2)*a(n-3)=0. - R. J. Mathar, Feb 02 2024
MAPLE
A369751 := proc(n)
option remember ;
if n =0 then
1;
else
add( binomial(2, k-1) * procname(n-k)/(n-k)!, k=1..min(3, n)) ;
-3*(n-1)!*% ;
end if;
end proc:
seq(A369751(n), n=0..20) ; # R. J. Mathar, Feb 02 2024
PROG
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(exp(1-(1+x)^3)))
CROSSREFS
Column k=3 of A369738.
Sequence in context: A130723 A369078 A209528 * A214778 A180754 A224091
KEYWORD
sign
AUTHOR
Seiichi Manyama, Jan 30 2024
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 26 03:00 EDT 2024. Contains 375454 sequences. (Running on oeis4.)