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!)
A348431 a(n) = (n')^(n'), where ' is the arithmetic derivative of n. 0
1, 1, 1, 1, 256, 1, 3125, 1, 8916100448256, 46656, 823543, 1, 18446744073709551616, 1, 387420489, 16777216, 1461501637330902918203684832716283019655932542976, 1, 5842587018385982521381124421, 1, 1333735776850284124449081472843776, 10000000000, 302875106592253 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,5
COMMENTS
a(p) = 1 for primes p since we have a(p) = (p')^(p') = 1^1 = 1.
LINKS
FORMULA
a(n) = A000312(A003415(n)).
MAPLE
a:= n-> (t-> t^t)(n*add(i[2]/i[1], i=ifactors(n)[2])):
seq(a(n), n=0..23); # Alois P. Heinz, Oct 20 2021
MATHEMATICA
Array[#^# &@ If[# < 2, 0, # Total[#2/#1 & @@@ FactorInteger[#]]] &, 19, 2] (* Michael De Vlieger, Oct 18 2021 *)
PROG
(PARI) ad(n) = vecsum([n/f[1]*f[2]|f<-factor(n+!n)~]); \\ A003415
a(n) = my(d=ad(n)); d^d; \\ Michel Marcus, Oct 19 2021
CROSSREFS
Sequence in context: A270876 A263166 A139305 * A351248 A160514 A203813
KEYWORD
nonn
AUTHOR
Wesley Ivan Hurt, Oct 18 2021
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 July 18 01:34 EDT 2024. Contains 374377 sequences. (Running on oeis4.)