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!)
A068327 Arithmetic derivative of n^n. 8
0, 0, 4, 27, 1024, 3125, 233280, 823543, 201326592, 2324522934, 70000000000, 285311670611, 142657607172096, 302875106592253, 100008061430022144, 3503151123046875000, 590295810358705651712, 827240261886336764177, 826274569581227289083904, 1978419655660313589123979 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
p prime: a(p) = A003415(p^p)) = p^p,
LINKS
Alois P. Heinz, Table of n, a(n) for n = 0..380 (first 100 terms from T. D. Noe)
FORMULA
a(n) = A003415(A000312(n)).
a(n) = n^n * A003415(n) = A000312(n) * A003415(n). - Alois P. Heinz, Jun 09 2015
EXAMPLE
a(10) = A003415(10^10) = A003415(2^10 * 5^10) = 10^10 * (10/2 + 10/5) = 10^10 * (5 + 2) = 70000000000 by formula in A003415.
MAPLE
a:= n-> n^(n+1)*add(i[2]/i[1], i=ifactors(n)[2]):
seq(a(n), n=0..30); # Alois P. Heinz, Jun 09 2015
# alternative
A068327 := proc(n)
A003415(n^n) ;
end proc:
seq( A068327(n), n=0..10) ; # R. J. Mathar, Oct 19 2021
MATHEMATICA
a312[n_] := Sum[ StirlingS2[n, k]*n!/(n - k)!, {k, 0, n}]; a3415[n_] := With[ {fi = FactorInteger[n]}, n*Total[ fi[[All, 2]] / fi[[All, 1]] ] ]; a3415[0] = a3415[1] = 0; a[n_] := a3415[ a312[n] ]; Table[ a[n], {n, 1, 16}] (* Jean-François Alcover, Mar 27 2013 *)
PROG
(Python)
from sympy import factorint
def A068327(n): return sum((n**(n+1)*e//p for p, e in factorint(n).items())) if n > 1 else 0 # Chai Wah Wu, Jun 12 2022
CROSSREFS
Sequence in context: A104168 A197990 A362838 * A066842 A133032 A271385
KEYWORD
nonn,nice
AUTHOR
Reinhard Zumkeller, Feb 27 2002
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 23:45 EDT 2024. Contains 372114 sequences. (Running on oeis4.)