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.

A193375 E.g.f.: A(x) = exp( Sum_{n>=1} x^(n*(n+1)/2) ).

Original entry on oeis.org

1, 1, 1, 7, 25, 61, 1201, 7771, 30577, 514585, 8089921, 63701551, 832599241, 14055894997, 137066892145, 3084240161731, 70859008063201, 849408115312561, 15997591979202817, 358582896987674455, 6017079190150763641, 209473179919282488301
Offset: 0

Views

Author

Paul D. Hanna, Jul 24 2011

Keywords

Examples

			E.g.f.: A(x) = 1 + x + x^2/2! + 7*x^3/3! + 25*x^4/4! + 61*x^5/5! +...
where
log(A(x)) = x + x^3 + x^6 + x^10 + x^15 + x^21 +...
		

Crossrefs

Programs

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