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!)
A367475 Expansion of e.g.f. 1 / (1 + 2 * log(1 - x))^3. 2
1, 6, 54, 636, 9204, 157584, 3111312, 69533472, 1734229344, 47733263232, 1436801816448, 46942939272960, 1654215709835520, 62533593070755840, 2524077593084160000, 108339176213529384960, 4927173048408858531840, 236673892535088351744000 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = (1/2) * Sum_{k=0..n} 2^k * (k+2)! * |Stirling1(n,k)|.
a(0) = 1; a(n) = 2*Sum_{k=1..n} (2*k/n + 1) * (k-1)! * binomial(n,k) * a(n-k).
MAPLE
A367475 := proc(n)
option remember ;
if n =0 then
1;
else
2*add((2*k/n + 1) * (k-1)! * binomial(n, k) * procname(n-k), k=1..n) ;
end if;
end proc:
seq(A367475(n), n=0..70) ; # R. J. Mathar, Dec 04 2023
PROG
(PARI) a(n) = sum(k=0, n, 2^k*(k+2)!*abs(stirling(n, k, 1)))/2;
CROSSREFS
Sequence in context: A269477 A305602 A367471 * A081132 A158831 A034001
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Nov 19 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 July 25 09:55 EDT 2024. Contains 374587 sequences. (Running on oeis4.)