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.

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

Original entry on oeis.org

1, 1, 2, 7, 47, 513, 8020, 169227, 4637965, 159568981, 6684686230, 332681461871, 19316990453131, 1292074091000105, 98636639620170792, 8528989125071254867, 829516920337723299465, 90124512307642049807293, 10865612430780251465538154
Offset: 0

Views

Author

Seiichi Manyama, Dec 07 2021

Keywords

Crossrefs

Programs

  • Mathematica
    a[n_] := Sum[If[k == 0, 1, (k*(n - k))^k], {k, 0, n}]; Array[a, 19, 0] (* Amiram Eldar, Dec 07 2021 *)
  • PARI
    a(n) = sum(k=0, n, (k*(n-k))^k);

Formula

log(a(n)) ~ n*(2*log(n) - 1 + (1/(2*log(n)) - 1)*log(2*log(n))). - Vaclav Kotesovec, Dec 07 2021