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

A183229 G.f.: Sum_{n>=0} a(n)*x^n/n!^2 = Product_{n>=1} (1 + x^n/n!^2).

Original entry on oeis.org

1, 1, 1, 10, 17, 126, 3862, 12741, 110609, 1929430, 167593826, 845443941, 11064102326, 178820437901, 7538334414717, 1483432379403435, 10962589471724049, 189591619730952006, 3827839859607324106
Offset: 0

Views

Author

Paul D. Hanna, Jan 04 2011

Keywords

Examples

			G.f.: A(x) = 1 + x + x^2/2!^2 + 10*x^3/3!^2 + 17*x^4/4!^2 +...
A(x) = (1 + x)*(1 + x^2/2!^2)*(1 + x^3/3!^2)*(1 + x^4/4!^2)*...
		

Crossrefs

Programs

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

A336294 a(n) = (n!)^n * [x^n] Product_{k>=1} (1 + x^k/(k!)^n).

Original entry on oeis.org

1, 1, 1, 28, 257, 103126, 46667437282, 140776183474585, 38414859209967468545, 8006615289848673023223926602, 100856872226698664486645150126408916015626, 7425498079138047573566961707334890995112470771975
Offset: 0

Views

Author

Ilya Gutkovskiy, Jul 16 2020

Keywords

Crossrefs

Programs

  • Mathematica
    Table[(n!)^n SeriesCoefficient[Product[(1 + x^k/(k!)^n), {k, 1, n}], {x, 0, n}], {n, 0, 11}]
Showing 1-2 of 2 results.