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.

A321385 a(n) = Sum_{d|n} (-1)^(n/d+1)*d^d.

Original entry on oeis.org

1, 3, 28, 251, 3126, 46632, 823544, 16776955, 387420517, 9999996878, 285311670612, 8916100401824, 302875106592254, 11112006824734476, 437893890380862528, 18446744073692774139, 827240261886336764178, 39346408075296150201567, 1978419655660313589123980, 104857599999999989999997126
Offset: 1

Views

Author

Ilya Gutkovskiy, Nov 08 2018

Keywords

Crossrefs

Programs

  • Mathematica
    Table[Sum[(-1)^(n/d + 1) d^d, {d, Divisors[n]}], {n, 20}]
    nmax = 20; Rest[CoefficientList[Series[Sum[k^k x^k/(1 + x^k), {k, 1, nmax}], {x, 0, nmax}], x]]
  • PARI
    a(n) = sumdiv(n, d, (-1)^(n/d+1)*d^d); \\ Michel Marcus, Nov 09 2018

Formula

G.f.: Sum_{k>=1} k^k*x^k/(1 + x^k).
a(n) ~ n^n. - Vaclav Kotesovec, Nov 09 2018