A129152 The n-th arithmetic derivative of 5^6.
15625, 18750, 34375, 37500, 87500, 187500, 475000, 1212500, 2437500, 6362500, 12737500, 25487500, 50987500, 101987500, 206975000, 530037500, 1060087500, 3890025000, 15175012500, 45525375000, 177026512500, 596222100000, 2708984250000, 12765250350000
Offset: 0
Keywords
Programs
-
Haskell
a129152 n = a129152_list !! n a129152_list = iterate a003415 15625 -- Reinhard Zumkeller, Apr 29 2012
-
Mathematica
dn[0] = 0; dn[1] = 0; dn[n_?Negative] := -dn[-n]; dn[n_] := Module[{f = Transpose[FactorInteger[n]]}, If[PrimeQ[n], 1, Total[n*f[[2]]/f[[1]]]]]; s = 5^6; Join[{s}, Table[s = dn[s], {18}]] (* T. D. Noe, Mar 07 2013 *)
-
PARI
A129152_upto(N)=vector(N,n,N=if(n>1,A003415(N),5^6)) \\ gives a(0..N-1). To get a(1..N) put A003415() around if() instead inside. M. F. Hasler, Nov 28 2019
Formula
a(n+1) = A003415(a(n)), a(0) = 5^6 = 15625.
Comments