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.

A308458 Expansion of e.g.f. log(Sum_{k>=0} k^binomial(k,2) * x^k / k!).

Original entry on oeis.org

1, 1, 23, 3994, 9745169, 470126386536, 558542572785461515, 19342808645467142112096240, 22528399370853856386499346950471953, 999999999774716004550606847948627702867525440, 1890591424701781041871514584507296209311760279398415565711
Offset: 1

Views

Author

Seiichi Manyama, May 27 2019

Keywords

Examples

			E.g.f.: x + x^2/2! + 23*x^3/3! + 3994*x^4/4! + 9745169*x^5/5! + 470126386536*x^6/6! + 558542572785461515*x^7/7! + ... .
		

Crossrefs

Programs

  • PARI
    N=20; x='x+O('x^N); Vec(serlaplace(log(sum(k=0, N, k^binomial(k, 2)*x^k/k!))))