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.

A202942 G.f.: [ Sum_{n>=0} (n+1)*(n+2)/2 * 2^(n^2) * x^n ]^(1/3).

Original entry on oeis.org

1, 2, 28, 1592, 320416, 233502272, 640425828736, 6752822665196288, 276674110514780283136, 44326172948662599528407552, 27888135883706078415361423227904, 69119744225611603596101581358820128768, 676455661208111898411893322163207326229331968
Offset: 0

Views

Author

Paul D. Hanna, Dec 26 2011

Keywords

Examples

			G.f.: A(x) = 1 + 2*x + 28*x^2 + 1592*x^3 + 320416*x^4 + 233502272*x^5 +...
where
A(x)^3 = 1 + 3*2*x + 6*2^4*x^2 + 10*2^9*x^3 + 15*2^16*x^4 + 21*2^25*x^5 +...
		

Programs

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

Formula

a(2*n) == 1 (mod 3); a(2*n+1) == 2 (mod 3).