login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A129151 The n-th arithmetic derivative of 3^4. 9
81, 108, 216, 540, 1188, 2484, 5076, 10260, 23112, 57996, 135648, 475632, 1586736, 4760640, 20409408, 89259840, 374899968, 1880140032, 9400707072, 64402394112, 395614900224, 2769304412160, 22930714939392, 162970999640064, 1188480788434944, 8320496444780544 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
COMMENTS
In general, the trajectory of p^(p+1) under A003415 is equal to p^p times the trajectory of p under A129283: n -> n + n'. Here we have the case p = 3 (see A129285 for a(n)/3^3), see A129150 and A129152 for p = 2 and 5. - M. F. Hasler, Nov 28 2019
LINKS
FORMULA
a(n+1) = A003415(a(n)), a(0) = 3^4 = 81.
a(n) = A129285(n)*3^3; A129251(a(n)) > 0. - Reinhard Zumkeller, Apr 07 2007
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 = 3^4; Join[{s}, Table[s = dn[s], {25}]] (* T. D. Noe, Mar 07 2013 *)
PROG
(Haskell)
a129151 n = a129151_list !! n
a129151_list = iterate a003415 81 -- Reinhard Zumkeller, Apr 29 2012
CROSSREFS
Sequence in context: A265135 A265136 A120457 * A039546 A223020 A357168
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, Apr 01 2007
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 29 21:36 EDT 2024. Contains 372114 sequences. (Running on oeis4.)