The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A357729 a(n) = Sum_{k=0..floor(n/2)} (-n)^k * Stirling2(n,2*k). 3

%I #18 Jan 25 2024 12:47:43

%S 1,0,-2,-9,-12,175,1938,9506,-24248,-1065663,-12021610,-56195425,

%T 677072220,19979234080,251733387514,1135594212255,-29317384858352,

%U -901607623649489,-13233854770928514,-68574233644270566,2258648937829442660,81748108921355457777

%N a(n) = Sum_{k=0..floor(n/2)} (-n)^k * Stirling2(n,2*k).

%H Andrew Howroyd, <a href="/A357729/b357729.txt">Table of n, a(n) for n = 0..200</a>

%H Eric Weisstein's World of Mathematics, <a href="http://mathworld.wolfram.com/BellPolynomial.html">Bell Polynomial</a>.

%F a(n) = n! * [x^n] cos( sqrt(n) * (exp(x) - 1) ).

%F a(n) = ( Bell_n(sqrt(n) * i) + Bell_n(-sqrt(n) * i) )/2, where Bell_n(x) is n-th Bell polynomial and i is the imaginary unit.

%o (PARI) a(n) = sum(k=0, n\2, (-n)^k*stirling(n, 2*k, 2));

%o (PARI) a(n) = round(n!*polcoef(cos(sqrt(n)*(exp(x+x*O(x^n))-1)), n));

%o (PARI) Bell_poly(n, x) = exp(-x)*suminf(k=0, k^n*x^k/k!);

%o a(n) = round((Bell_poly(n, sqrt(n)*I)+Bell_poly(n, -sqrt(n)*I)))/2;

%Y Main diagonal of A357728.

%Y Cf. A357682, A357721.

%K sign

%O 0,3

%A _Seiichi Manyama_, Oct 11 2022

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 June 10 17:05 EDT 2024. Contains 373277 sequences. (Running on oeis4.)