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.

A214800 The n-th arithmetic derivative of 4^5.

This page as a plain text file.
%I A214800 #15 Mar 08 2013 00:15:29
%S A214800 1024,5120,26624,148480,777216,4249600,25123840,134268928,741121024,
%T A214800 3811486720,19819736064,112733967360,644174359552,3220871798784,
%U A214800 22009290649600,142032743280640,881678229782528,6174273912848384,44101956520460288,312415523110846464
%N A214800 The n-th arithmetic derivative of 4^5.
%C A214800 See A003415 for the definition of the arithmetic derivative.
%t A214800 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 = 4^5; Join[{s}, Table[s = dn[s], {19}]] (* _T. D. Noe_, Mar 07 2013 *)
%Y A214800 Cf. A003415, A129150, A129151, A129152.
%K A214800 nonn
%O A214800 0,1
%A A214800 _Franz Tolosa_, Mar 07 2013