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.

A158111 E.g.f.: sm^-1(x) = Sum_{n>=0} a(n)*x^(3n+1)/(3n+1)!; a(n) = coefficient of x^(3n+1)/(3n+1)! in the Maclaurin expansion of the inverse of the Dixon elliptic function sm(x,0).

Original entry on oeis.org

1, 4, 400, 179200, 216832000, 552487936000, 2554704216064000, 19415752042086400000, 225960522265801523200000, 3818732826292045742080000000, 89923520593525093134499840000000, 2854532237720860556461562920960000000, 118891267701073842176624095657984000000000
Offset: 0

Views

Author

Paul D. Hanna, Mar 18 2009

Keywords

Comments

sm(x) = sm(x,0) satisfies: Integral_{y=0..sm(x,0)} dy/(1-y^3)^(2/3) = x.

Examples

			E.g.f.: 1/(1-x^3)^(2/3) = 1 + 4*x^3/3! + 400*x^6/6! + 179200*x^9/9! + ...
E.g.f.: sm^-1(x) = x + 4*x^4/4! + 400*x^7/7! + 179200*x^10/10! + ...
sm(x) = x - 4*x^4/4! + 160*x^7/7! - 20800*x^10/10! + 6476800*x^13/13! + ...
		

Crossrefs

Programs

  • Maple
    a(n):= mul(k-0^(mod(k,3)),k=1..3*n):seq(a(n), n = 0 .. 12);
    # Peter Bala, Feb 22 2015
  • Mathematica
    Join[{1},Table[Product[(3k-2)(3k-1)^2,{k,n}],{n,14}]] (* Harvey P. Dale, May 19 2012 *)
    a[k_] := Pochhammer[2/3, k] (3 k)!/k!; Array[a, 15, 0] (* Jan Mangaldan, Jan 06 2017 *)
  • PARI
    a(n)=prod(k=1,n,(3*k-2)*(3*k-1)^2)

Formula

a(n) = Product_{k=1..n} (3k-2)*(3k-1)^2 for n > 0 with a(0)=1.
E.g.f.: Sum_{n>=0} a(n)*x^(3m)/(3m)! = 1/(1-x^3)^(2/3).
From Peter Bala, Feb 22 2015: (Start)
a(n) = (n - 1/3)! * (3*n)!/( (-1/3)! * n! ).
a(n) = Product {k = 1..3*n} (k - 0^(k mod 3)), where we apply the usual convention that 0^0 = 1. Cf. A255406. (End)
a(n) ~ Gamma(1/3) * 3^(3*n + 1) * n^(3*n + 1/6) / (sqrt(2*Pi) * exp(3*n)). - Vaclav Kotesovec, Apr 10 2018

Extensions

More terms from Harvey P. Dale, May 19 2012