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.

A367199 E.g.f. satisfies A(x) = (1 + x*A(x))^(A(x)^3).

Original entry on oeis.org

1, 1, 8, 141, 3852, 143460, 6780642, 388851960, 26235133992, 2036243259648, 178742696099040, 17509589369568648, 1893647907646728120, 224106838102512869400, 28809018473999642686584, 3997516614926297143604760, 595518793080901690966354368
Offset: 0

Views

Author

Seiichi Manyama, Nov 10 2023

Keywords

Crossrefs

Programs

  • PARI
    a(n) = sum(k=0, n, (n+3*k+1)^(k-1)*stirling(n, k, 1));

Formula

a(n) = Sum_{k=0..n} (n+3*k+1)^(k-1) * Stirling1(n,k).

A367201 E.g.f. satisfies log(A(x)) = (exp(x*A(x)) - 1) * A(x)^3.

Original entry on oeis.org

1, 1, 10, 200, 6167, 258607, 13748744, 886397829, 67211684890, 5861684458896, 578088714806497, 63617223837958309, 7728596914020856162, 1027393177458209939977, 148344954037140113652010, 23119776330887635387231580, 3868359765874829925197165527
Offset: 0

Views

Author

Seiichi Manyama, Nov 10 2023

Keywords

Crossrefs

Programs

  • PARI
    a(n) = sum(k=0, n, (n+3*k+1)^(k-1)*stirling(n, k, 2));

Formula

a(n) = Sum_{k=0..n} (n+3*k+1)^(k-1) * Stirling2(n,k).
Showing 1-2 of 2 results.