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!)
A369746 Expansion of e.g.f. exp( 3 * (1-sqrt(1-2*x)) ). 0
1, 3, 12, 63, 423, 3528, 35559, 422901, 5817744, 91072269, 1600588269, 31230827532, 670252672593, 15696888917427, 398454496989012, 10899543418960167, 319672849622745951, 10007954229075765984, 333139545206104991031, 11749955670275356579941 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(0) = 1; a(n) = Sum_{k=0..n-1} 3^(n-k) * (n-1+k)! / (2^k * k! * (n-1-k)!).
a(n) = (2*n-3)*a(n-1) + 9*a(n-2).
MAPLE
# The row polynomials of A132062 evaluated at x = 3.
T := proc(n, k) option remember; if k = 0 then 0^n elif n < k then 0
else (2*(n - 1) - k)*T(n - 1, k) + T(n - 1, k - 1) fi end:
seq(add(T(n, k)*3^k, k = 0..n), n = 0..19); # Peter Luschny, Apr 25 2024
PROG
(PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace(exp(3*(1-sqrt(1-2*x)))))
CROSSREFS
Cf. A369722.
Sequence in context: A238887 A351778 A135889 * A124562 A172450 A276743
KEYWORD
nonn,changed
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 May 3 08:32 EDT 2024. Contains 372207 sequences. (Running on oeis4.)