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.

A258849 The n-th pi-based arithmetic derivative of n.

Original entry on oeis.org

0, 0, 0, 0, 4, 0, 4, 4, 12288, 81920, 0, 0, 278380544, 4, 4931584, 278380544, 14768867966976, 4, 128412352512, 14768867966976, 375877192068366336, 14768867966976, 14768867966976, 375877192068366336
Offset: 0

Views

Author

Alois P. Heinz, Jun 12 2015

Keywords

Crossrefs

Main diagonal of A258850.

Programs

  • Maple
    with(numtheory):
    d:= n-> n*add(i[2]*pi(i[1])/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$2):
    seq(a(n), n=0..23);

Formula

a(n) = A258851^n(n) = A258850(n,n).