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!)
A225147 a(n) = Im((1-I)^(1-n)*A_{n, 3}(I)) where A_{n, k}(x) are the generalized Eulerian polynomials. 3

%I #51 Jul 07 2021 12:08:28

%S -1,2,5,-46,-205,3362,22265,-515086,-4544185,135274562,1491632525,

%T -54276473326,-718181418565,30884386347362,476768795646785,

%U -23657073914466766,-417370516232719345,23471059057478981762,465849831125196593045,-29279357851856595135406

%N a(n) = Im((1-I)^(1-n)*A_{n, 3}(I)) where A_{n, k}(x) are the generalized Eulerian polynomials.

%H Vincenzo Librandi, <a href="/A225147/b225147.txt">Table of n, a(n) for n = 0..300</a>

%H Peter Luschny, <a href="http://oeis.org/wiki/User:Peter_Luschny/EulerianPolynomialsGeneralized">Generalized Eulerian polynomials</a>.

%F a(n) = Im(-2*i*(1+Sum_{j=0..n}(binomial(n,j)*Li{-j}(i)*3^j))).

%F For a recurrence see the Maple program.

%F G.f.: conjecture -T(0)/(1+2*x), where T(k) = 1 - 9*x^2*(k+1)^2/(9*x^2*(k+1)^2 + (1+2*x)^2/T(k+1) ); (continued fraction). - _Sergei N. Gladkovskii_, Nov 12 2013

%F a(n) = -(-3)^n*skp(n, 2/3), where skp(n,x) are the Swiss-Knife polynomials A153641. - _Peter Luschny_, Apr 19 2014

%F G.f.: A225147 = -1/T(0), where T(k) = 1 + 2*x + (k+1)^2*(3*x)^2/ T(k+1); (continued fraction). - _Sergei N. Gladkovskii_, Sep 29 2014

%F E.g.f.: -exp(-2*x)*sech(3*x). - _Sergei N. Gladkovskii_, Sep 29 2014

%F a(n) ~ n! * (sqrt(3)*sin(Pi*n/2) - cos(Pi*n/2)) * 2^(n+1) * 3^n / Pi^(n+1). - _Vaclav Kotesovec_, Sep 29 2014

%F From _Peter Bala_, Nov 13 2016: (Start)

%F a(n) = - 6^n*E(n,1/6), where E(n,x) denotes the Euler polynomial of order n.

%F a(2*n) = (-1)^(n+1)*A002438(n); a(2*n+1) = (1/2)*(-1)^n*A002439(n). (End)

%p B := proc(n, u, k) option remember;

%p if n = 1 then if (u < 0) or (u >= 1) then 0 else 1 fi

%p else k*u*B(n-1, u, k) + k*(n-u)*B(n-1, u-1, k) fi end:

%p EulerianPolynomial := proc(n, k, x) local m; if x = 0 then RETURN(1) fi;

%p add(B(n+1, m+1/k, k)*u^m, m = 0..n); subs(u=x, %) end:

%p seq(Im((1-I)^(1-n)*EulerianPolynomial(n, 3, I)), n=0..19);

%t CoefficientList[Series[-E^(-2*x)*Sech[3*x],{x,0,20}],x] * Range[0,20]! (* _Vaclav Kotesovec_, Sep 29 2014 after _Sergei N. Gladkovskii_ *)

%t Table[-6^n EulerE[n,1/6], {n,0,19}] (* _Peter Luschny_, Nov 16 2016 after _Peter Bala_ *)

%o (Sage)

%o from mpmath import mp, polylog, im

%o mp.dps = 32; mp.pretty = True

%o def A225147(n): return im(-2*I*(1+add(binomial(n,j)*polylog(-j,I)*3^j for j in (0..n))))

%o [int(A225147(n)) for n in (0..19)]

%Y Cf. A000810 (real part (up to sign)), A212435 (k=2), A122045 (k=1), A002439.

%Y Bisections are A002438 and A000191.

%K sign,easy

%O 0,2

%A _Peter Luschny_, Apr 30 2013

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 11 16:59 EDT 2024. Contains 373315 sequences. (Running on oeis4.)