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.

A279020 a(n) = unreduced numerator in Sum_{k=1..n} (-1)^(k-1)/k^k.

Original entry on oeis.org

0, 1, 3, 85, 21652, 67690148, 3158065145088, 2600806474859606784, 43634288683151793919033344, 16904817514490272003065681518985216, 169048175123324778807714958980684133171200000, 48231417258392463006590622244366007983063473271603200000
Offset: 0

Views

Author

Daniel Suteu, Dec 03 2016

Keywords

Crossrefs

Cf. A083648.

Programs

  • PARI
    sum(k=1, n, (-1)^(k-1)/k^k) * prod(k=1, n, k^k)

Formula

a(n) ~ A083648 * A002109(n).
a(0) = 0, a(n) = n^n * a(n-1) + (-1)^(n-1) * A002109(n-1).