OFFSET
1,2
COMMENTS
For any integer sequence a, the sequence b such that b(n) = Product_{d|n} a(d) is a divisibility sequence. Since A253139(n) = Product_{d|n} a(d), A253139 is a divisibility sequence.
a(n) depends only on prime signature of n (cf. A025487). So a(24) = a(375) since 24 = 2^3*3 and 375 = 3*5^3 both have prime signature (3,1).
LINKS
Antti Karttunen, Table of n, a(n) for n = 1..10000
Morgan Ward, A note on divisibility sequences, Bull. Amer. Math. Soc., 45 (1939), 334-336.
EXAMPLE
MATHEMATICA
Table[If[PrimePowerQ[n], Exp[MangoldtLambda[DivisorSigma[0, n]]], 1], {n, 1, 100}] (* Indranil Ghosh, Jul 19 2017 *)
PROG
(PARI)
A014963(n) = ispower(n, , &n); if(isprime(n), n, 1); \\ This function from Charles R Greathouse IV, Jun 10 2011
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Matthew Vandermast, Dec 27 2014
STATUS
approved