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-3 of 3 results.

A193441 E.g.f.: exp( Sum_{n>=1} n!^2*x^(2*n)/(2*n)! ) = Sum_{n>=0} a(n)*x^(2*n)/(2*n)!.

Original entry on oeis.org

1, 1, 7, 111, 3089, 131985, 7977687, 645443295, 67165412385, 8722553971041, 1380689271177255, 261365482010524815, 58252017195624969009, 15086874107373899187825, 4490370671139664566269175, 1521257907398602231501780095, 581762614758928225569542394945
Offset: 0

Views

Author

Paul D. Hanna, Jul 25 2011

Keywords

Comments

Sum_{n>=0} a(n)/(2*n)! = exp(1/3 + 2*sqrt(3)*Pi/27) = 2.08840341696864282...

Examples

			E.g.f.: A(x) = 1 + x^2/2! + 7*x^4/4! + 111*x^6/6! + 3089*x^8/8! + 131985*x^10/10! + 7977687*x^12/12! +...+ a(n)*x^(2*n)/(2*n)! +...
where
log(A(x)) = x^2/2 + x^4/6 + x^6/20 + x^8/70 + x^10/252 + x^12/924 + x^14/3432 + x^16/12870 +...+ x^(2*n)/A000984(n) +...
In closed form,
log(A(x)) = x^2/(4-x^2) + 4*x*arctan(x/sqrt(4-x^2))/sqrt((4-x^2)^3).
		

Crossrefs

Cf. A193442, A193443, A193444, A000984 (C(2*n,n)).

Programs

  • PARI
    {a(n)=(2*n)!*polcoeff(exp(sum(m=1,n,x^(2*m)/binomial(2*m,m))+O(x^(2*n+1))),2*n)}
    
  • PARI
    /* Using formula for e.g.f. = exp(L(x)): */
    {a(n)=local(Ox=O(x^(2*n+1)), L=x^2/(4-x^2 +Ox) + 4*x*atan(x/sqrt(4-x^2 +Ox))/sqrt((4-x^2 +Ox)^3)); (2*n)!*polcoeff(exp(L), 2*n)}

Formula

E.g.f.: exp(L(x)) = Sum_{n>=0} a(n)*x^(2*n)/(2*n)!,
where L(x) = x^2/(4-x^2) + 4*x*arctan(x/sqrt(4-x^2))/sqrt((4-x^2)^3)
from a formula given in the Sprugnoli link.

A193443 E.g.f.: exp( Sum_{n>=1} x^(2*n)/(2*A000108(n)) ) = Sum_{n>=0} a(n)*x^(2*n)/(2*n)!, where A000108 is the Catalan numbers.

Original entry on oeis.org

1, 1, 9, 177, 6081, 320625, 23901993, 2382903873, 305213701185, 48729724204833, 9471295552801545, 2198860046959656465, 600311814859681301889, 190227653770262659729425, 69194247433728324962214825, 28616922449430718198313413665, 13345389352004839017903164910465
Offset: 0

Views

Author

Paul D. Hanna, Jul 25 2011

Keywords

Comments

Sum_{n>=0} a(n)/(2*n)! = exp(1/2 + 2*sqrt(3)*Pi/27) = 2.4671571229001...

Examples

			E.g.f.: A(x) = 1 + x^2/2! + 9*x^4/4! + 177*x^6/6! + 6081*x^8/8! + 320625*x^10/10! + 23901993*x^12/12! +...+ a(n)*x^(2*n)/(2*n)! +...
where
log(A(x)) = x^2/2 + x^4/4 + x^6/10 + x^8/28 + x^10/84 + x^12/264 + x^14/858 + x^16/2860 +...+ (n+1)*x^(2*n)/(2*C(2*n,n)) +...
		

Crossrefs

Cf. A193441, A193442, A000108 (Catalan), A121839.

Programs

  • PARI
    {a(n)=(2*n)!*polcoeff(exp(sum(m=1,n,(m+1)*x^(2*m)/binomial(2*m,m)/2)+O(x^(2*n+1))),2*n)}
    
  • PARI
    /* Using formula for e.g.f. = exp(L(x)): */
    {a(n)=local(Ox=O(x^(2*n+1)),L=-1/2 + (8+x^2)/(4-x^2 +Ox)^2 + 12*x*atan(x/sqrt(4-x^2 +Ox))/sqrt((4-x^2 +Ox)^5)); (2*n)!*polcoeff(exp(L),2*n)}

Formula

E.g.f.: exp(L(x)) = Sum_{n>=0} a(n)*x^(2*n)/(2*n)!,
where L(x) = -1/2 + (8+x^2)/(4-x^2)^2 + 12*x*atan(x/sqrt(4-x^2))/sqrt((4-x^2)^5) from a formula given in A121839.

A193444 E.g.f.: exp( Sum_{n>=1} n!*x^(2*n)/(2*n)! ) = Sum_{n>=0} a(n)*x^(2*n)/(2*n)!.

Original entry on oeis.org

1, 1, 5, 51, 857, 21045, 702597, 30379839, 1642718865, 108171928521, 8495805003525, 782625366185355, 83400601634195049, 10163125433194019325, 1402348965454767334725, 217258436356989650347095, 37513434482581646048138145, 7172552434209226974773867025
Offset: 0

Views

Author

Paul D. Hanna, Jul 25 2011

Keywords

Examples

			E.g.f.: A(x) = 1 + x^2/2! + 5*x^4/4! + 51*x^6/6! + 857*x^8/8! + 21045*x^10/10! + 702597*x^12/12! +...+ a(n)*x^n/(2*n)! +...
where
log(A(x)) = x^2/2! + 2!*x^4/4! + 3!*x^6/6! + 4!*x^8/8! + 5!*x^10/10! +...
		

Crossrefs

Cf. A193441, A193442, A193443, A001813 ((2*n)!/n!).

Programs

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

Formula

a(0) = 1; a(n) = Sum_{k=1..n} binomial(2*n-1,2*k-1) * k! * a(n-k). - Ilya Gutkovskiy, Jan 27 2020
Showing 1-3 of 3 results.