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.

A367011 a(n) = Sum_{k=0..n} k! * k^(n-k).

Original entry on oeis.org

1, 1, 3, 11, 51, 287, 1899, 14447, 124251, 1192127, 12623979, 146250287, 1840024251, 24983863967, 364140992139, 5670546353807, 93960923507931, 1650688221777407, 30646388716777899, 599565840087487727, 12328458398407260411
Offset: 0

Views

Author

Vaclav Kotesovec, Nov 01 2023

Keywords

Crossrefs

Programs

  • Mathematica
    Table[Sum[k! * k^(n-k), {k, 0, n}], {n, 1, 20}]
  • PARI
    a(n) = sum(k=0, n, k!*k^(n-k)); \\ Seiichi Manyama, Dec 31 2023

Formula

a(n) ~ Pi * n^(n+1) / exp(n).
a(n) ~ sqrt(Pi*n/2) * n!.

Extensions

a(0)=1 prepended by Seiichi Manyama, Dec 31 2023

A368573 a(n) = Sum_{k=0..n} k! * k^k.

Original entry on oeis.org

1, 2, 10, 172, 6316, 381316, 33973636, 4184630356, 680641979476, 141267789027796, 36429267789027796, 11425158161234192596, 4282251538636575402196, 1890291840090813125264596, 970616058694975134467523796, 573593232413546537634467523796, 386530943604347679737893326531796
Offset: 0

Views

Author

Seiichi Manyama, Dec 31 2023

Keywords

Crossrefs

Partial sums of A061711.

Programs

  • PARI
    a(n) = sum(k=0, n, k!*k^k);

Formula

a(n) ~ n! * n^n. - Vaclav Kotesovec, Jan 13 2024
Showing 1-2 of 2 results.