cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-4 of 4 results.

A168403 E.g.f.: Sum_{n>=0} sin(2^n*x)^n/n!.

Original entry on oeis.org

1, 2, 16, 504, 64512, 33226784, 68383997952, 561747553419136, 18430982918118572032, 2417076909966155927519744, 1267505531841541043488055885824, 2658351411163282144153185664555284480
Offset: 0

Views

Author

Paul D. Hanna, Nov 25 2009

Keywords

Examples

			E.g.f.: A(x) = 1 + 2*x + 16*x^2/2! + 504*x^3/3! + 64512*x^4/4! +...
A(x) = 1 + sin(2*x) + sin(4*x)^2/2! + sin(8*x)^3/3! + sin(16*x)^4/4! +...+ sin(2^n*x)^n/n! +...
a(n) = coefficient of x^n/n! in G(x)^(2^n) where G(x) = exp(sin(x)):
G(x) = 1 + x + x^2/2! - 3*x^4/4! - 8*x^5/5! - 3*x^6/6! + 56*x^7/7! +...+ A002017(n)*x^n/n! +...
		

Crossrefs

Cf. A002017 (exp(sin x)), variants: A168402, A136632.

Programs

  • Mathematica
    nmax = 12; CoefficientList[Series[Sum[Sin[2^k*x]^k/k!, {k, 0, nmax}], {x, 0, nmax}], x] * Range[0, nmax]! (* Vaclav Kotesovec, Oct 11 2020 *)
  • PARI
    {a(n)=n!*polcoeff(sum(k=0,n,sin(2^k*x +x*O(x^n))^k/k!),n)}
    
  • PARI
    {a(n)=n!*polcoeff(exp(2^n*sin(x +x*O(x^n))),n)}

Formula

a(n) = [x^n/n! ] exp(2^n*sin(x)) for n>=0.
a(n) ~ 2^(n^2). - Vaclav Kotesovec, Oct 11 2020

A168404 E.g.f.: Sum_{n>=0} tan(2^n*x)^n/n!.

Original entry on oeis.org

1, 2, 16, 528, 67584, 34210304, 69391122432, 565356426987520, 18478277930015260672, 2419401354886413876592640, 1267940756758206239694099841024, 2658665157828553829995392867121496064
Offset: 0

Views

Author

Paul D. Hanna, Nov 25 2009

Keywords

Examples

			E.g.f.: A(x) = 1 + 2*x + 16*x^2/2! + 528*x^3/3! + 67584*x^4/4! +...
A(x) = 1 + tan(2*x) + tan(4*x)^2/2! + tan(8*x)^3/3! + tan(16*x)^4/4! +...+ tan(2^n*x)^n/n! +...
a(n) = coefficient of x^n/n! in G(x)^(2^n) where G(x) = exp(tan(x)):
G(x) = 1 + x + x^2/2! + 3*x^3/3! + 9*x^4/4! + 37*x^5/5! + 177*x^6/6! +...+ A006229(n)*x^n/n! +...
		

Crossrefs

Cf. A006229 (exp(tan x)), variants: A136632, A168402, A168403, A168405, A168406, A168407, A168408.

Programs

  • PARI
    {a(n)=n!*polcoeff(sum(k=0,n,tan(2^k*x +x*O(x^n))^k/k!),n)}
    
  • PARI
    {a(n)=n!*polcoeff(exp(2^n*tan(x +x*O(x^n))),n)}

Formula

a(n) = [x^n/n! ] exp(2^n*tan(x)) for n>=0.

A168405 E.g.f.: Sum_{n>=0} arcsin(2^n*x)^n/n!.

Original entry on oeis.org

1, 2, 16, 520, 66560, 33882400, 69055283200, 564153087455360, 18462510039810703360, 2418626471936038215754240, 1267795676362601991645220044800, 2658560574070850656450883768752998400
Offset: 0

Views

Author

Paul D. Hanna, Nov 25 2009

Keywords

Examples

			E.g.f.: A(x) = 1 + 2*x + 16*x^2/2! + 520*x^3/3! + 66560*x^4/4! + ...
A(x) = 1 + arcsin(2*x) + arcsin(4*x)^2/2! + arcsin(8*x)^3/3! + arcsin(16*x)^4/4! + ... + arcsin(2^n*x)^n/n! + ...
a(n) = coefficient of x^n/n! in G(x)^(2^n) where G(x) = exp(arcsin(x)):
G(x) = 1 + x + x^2/2! + 2*x^3/3! + 5*x^4/4! + 20*x^5/5! + 85*x^6/6! + ... + A006228(n)*x^n/n! + ...
		

Crossrefs

Cf. A006228 (exp(arcsin x)), variants: A136632, A168402, A168403, A168404, A168406, A168407, A168408.

Programs

  • PARI
    {a(n)=n!*polcoeff(sum(k=0,n,asin(2^k*x +x*O(x^n))^k/k!),n)}
    
  • PARI
    {a(n)=n!*polcoeff(exp(2^n*asin(x +x*O(x^n))),n)}

Formula

a(n) = [x^n/n!] exp(2^n*arcsin(x)) for n >= 0.

A168406 E.g.f.: Sum_{n>=0} arctan(2^n*x)^n/n!.

Original entry on oeis.org

1, 2, 16, 496, 63488, 32899840, 68049141760, 560546415810560, 18415229458563727360, 2416302337337071616327680, 1267360474688679165942982246400, 2658246833688954938616062542151680000
Offset: 0

Views

Author

Paul D. Hanna, Nov 25 2009

Keywords

Examples

			E.g.f.: A(x) = 1 + 2*x + 16*x^2/2! + 496*x^3/3! + 63488*x^4/4! + ...
A(x) = 1 + arctan(2*x) + arctan(4*x)^2/2! + arctan(8*x)^3/3! + arctan(16*x)^4/4! + ... + arctan(2^n*x)^n/n! + ...
a(n) = coefficient of x^n/n! in G(x)^(2^n) where G(x) = exp(arctan(x)):
G(x) = 1 + x + x^2/2! - x^3/3! - 7*x^4/4! + 5*x^5/5! + 145*x^6/6! + ... + A002019(n)*x^n/n! + ...
		

Crossrefs

Cf. A002019 (exp(arctan x)), variants: A136632, A168402, A168403, A168404, A168405, A168407, A168408.

Programs

  • PARI
    {a(n)=n!*polcoeff(sum(k=0,n,atan(2^k*x +x*O(x^n))^k/k!),n)}
    
  • PARI
    {a(n)=n!*polcoeff(exp(2^n*atan(x +x*O(x^n))),n)}

Formula

a(n) = [x^n/n!] exp(2^n*arctan(x)) for n >= 0.
Showing 1-4 of 4 results.