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!)
A188514 Expansion of exp( Sum_{n >= 1} A188458(n)*x^n/n ). 9

%I #26 Aug 27 2018 03:47:54

%S 1,1,-1,-5,11,91,-391,-4115,27971,357331,-3353731,-50789375,607914581,

%T 10692083221,-155442170521,-3120028100285,53341649623091,

%U 1204301220497011,-23663734574555011,-593828627529030095,13182525824990398001

%N Expansion of exp( Sum_{n >= 1} A188458(n)*x^n/n ).

%C The e.g.f. of A188458 is exp(x)/cosh(2*x).

%C The e.g.f. of this sequence is the product of the e.g.f. of A188458 and an even function (see formula section).

%C From _Peter Bala_, Mar 10 2015: (Start)

%C Note exp( Sum_{n >= 1} A212435(n)*x^n/n ) = exp( -x - 3*x^2/2 + 11*x^3/3 + 57*x^4/4 - ... ) = 1 - x - x^2 + 5*x^3 + 11*x^4 - 91*x^5 - 391*x^6 + + - - ... appears to give this sequence but with a different pattern of signs.

%C More generallly, it appears that when h is an integer and k is a nonzero integer, the expansion of exp( Sum_{n >= 1} (4*k)^n*E(n,h/(4*k))*x^n/n ) has integer coefficients, where E(n,x) denotes the n-th Euler polynomial. (End)

%H G. C. Greubel, <a href="/A188514/b188514.txt">Table of n, a(n) for n = 0..200</a>

%F G.f.: A(x) = 1/(1-x/(1+2*x/(1 -3*x/(1+3*x/(1+x -5*x/(1+5*x/(1+x -7*x/(1+7*x/(1+x -9*x/(1+9*x/(1+x -11*x/(1+11*x/(1+x -... ))))))))))))) (continued fraction).

%F Let E(x) be the e.g.f. of this sequence, and let G(x) be the e.g.f of A092635 such that G(x) = G(-x)*exp(-4*x), then E(x) and G(x) are related by:

%F (1) E(x) = exp(-x) * G(-x),

%F (2) E(x) = exp(x)/cosh(2*x) * (G(x)+G(-x))/2.

%e O.g.f.: A(x) = 1 + x - x^2 - 5*x^3 + 11*x^4 + 91*x^5 - 391*x^6 +...

%e Illustration of the properties of the exponential generating function.

%e E.g.f.: E(x) = 1 + x - x^2/2! - 5*x^3/3! + 11*x^4/4! + 91*x^5/5! - 391*x^6/6! +...

%e Note that E(x)*cosh(2*x)/exp(x) is an even function:

%e E(x)*cosh(2*x)/exp(x) = 1 + 2*x^2/2! - 10*x^4/4! + 212*x^6/6! - 10330*x^8/8! + 926972*x^10/10! +...+ A092635(2*n)*x^(2*n)/(2*n)! +...

%e which equals (G(x)+G(-x))/2 with G(x) being the e.g.f of A092635:

%e G(x) = 1 - 2*x + 2*x^2/2! + 4*x^3/3! - 10*x^4/4! - 92*x^5/5! + 212*x^6/6! +...

%p exp(add(4^n*euler(n, 3/4)*x^n/n, n = 1 .. 20)): seq(coeftayl(%, x = 0, n), n = 0 .. 20); # _Peter Bala_, Mar 09 2015

%t A188458:= With[{nn = 160}, CoefficientList[Series[E^x/Cosh[2*x], {x, 0, nn}], x]*Range[0, nn]!]; a:= With[{nmax = 80}, CoefficientList[ Series[Exp[Sum[A188458[[k + 1]]*x^(k)/(k), {k, 1, 75}]], {x, 0, nmax}], x]]; Table[a[[n]], {n, 1, 51}] (* _G. C. Greubel_, Aug 26 2018 *)

%o (PARI) {A188458(n)=local(X=x+x*O(x^n));n!*polcoeff(exp(X)/cosh(2*X),n)}

%o {a(n)=polcoeff(exp(sum(m=1,n,A188458(m)*x^m/m)+x*O(x^n)),n)}

%o (PARI) {A092635(n)=if(n<0, 0, polcoeff(exp(intformal(serlaplace(-1/cosh(x*2+x*O(x^n))^2*2))), n))} /* _Michael Somos_ */

%o {a(n)=n!*polcoeff(exp(-x+x*O(x^n))*sum(m=0,n,A092635(m)*(-x)^m/m!),n)}

%Y Cf. A188458, A092635.

%Y Cf. A212435, A255883.

%K sign

%O 0,4

%A _Paul D. Hanna_, Apr 02 2011

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 5 01:44 EDT 2024. Contains 372257 sequences. (Running on oeis4.)