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.

A062812 a(n) = Sum_{i=1..n} i^(n - i) + (-1)^(n - i)*(n - i)^i.

Original entry on oeis.org

1, 1, 5, 9, 25, 65, 205, 713, 2753, 11425, 50389, 234825, 1155817, 6009153, 32958173, 190115849, 1148816017, 7244099617, 47521750501, 323632894729, 2284774880441, 16702573959489, 126299702576365, 986688266888777
Offset: 1

Views

Author

Olivier Gérard, Jun 23 2001

Keywords

Crossrefs

Programs

  • Mathematica
    Sum[i^(n - i) + (-1)^(n - i)*(n - i)^i, {i, 1, n}]
  • PARI
    a(n) = sum(i=1, n, i^(n-i) + (-1)^(n-i)*(n-i)^i); \\ Michel Marcus, Mar 24 2019