login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A258849
The n-th pi-based arithmetic derivative of n.
1
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,5
FORMULA
a(n) = A258851^n(n) = A258850(n,n).
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);
CROSSREFS
Main diagonal of A258850.
Sequence in context: A258856 A258857 A258858 * A258859 A258860 A134944
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Jun 12 2015
STATUS
approved