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.

A258646 Sixth arithmetic derivative of n.

Original entry on oeis.org

0, 0, 0, 0, 4, 0, 0, 0, 368, 0, 0, 0, 752, 0, 0, 176, 1520, 0, 0, 0, 608, 0, 0, 0, 1552, 0, 80, 27, 1520, 0, 0, 0, 3424, 0, 0, 368, 1312, 0, 0, 752, 288, 0, 0, 0, 3120, 368, 0, 0, 8144, 0, 176, 240, 1312, 0, 2484, 752, 3312, 0, 0, 0, 3312, 0, 1, 112, 245760, 0
Offset: 0

Views

Author

Alois P. Heinz, Jun 06 2015

Keywords

Crossrefs

Column k=6 of A258651.
Cf. A003415.

Programs

  • Maple
    d:= n-> n*add(i[2]/i[1], i=ifactors(n)[2]):
    A:= proc(n, k) option remember; `if`(k=0, n, d(A(n, k-1))) end:
    a:= n-> A(n, 6):
    seq(a(n), n=0..70);

Formula

a(n) = A003415^6(n).