A090884 a(n) is the derivative of n via transport of structure from polynomials. Completely multiplicative with a(2) = 1, a(prime(i+1)) = prime(i)^i for i > 0.
1, 1, 2, 1, 9, 2, 125, 1, 4, 9, 2401, 2, 161051, 125, 18, 1, 4826809, 4, 410338673, 9, 250, 2401, 16983563041, 2, 81, 161051, 8, 125, 1801152661463, 18, 420707233300201, 1, 4802, 4826809, 1125, 4, 25408476896404831, 410338673, 322102, 9
Offset: 1
Examples
504 = 2^3 * 3^2 * 7 is mapped to polynomial 3+2X+X^3, whose derivative is 2+3X^2, which is mapped to 2^2 * 5^3 = 500. Then, a(504) = 500. - _Luc Rousseau_, Aug 06 2018
References
- Joseph J. Rotman, The Theory of Groups: An Introduction, 2nd ed. Boston: Allyn and Bacon, Inc. 1973. Page 9, problem 1.26.
Links
- Andrew Howroyd, Table of n, a(n) for n = 1..500
- Sam Alexander, Post to sci.math.
- Wikipedia, Transport of structure
Crossrefs
Programs
-
PARI
a(n)={my(f=factor(n)); prod(i=1, #f~, my([p,e]=f[i,]); if(p==2, 1, precprime(p-1)^(e*primepi(p-1))))} \\ Andrew Howroyd, Jul 31 2018
Extensions
More terms from Ray Chandler, Dec 20 2003
New name from Peter Munn, Aug 10 2022 using existing formula (Andrew Howroyd, Jul 31 2018) and introductory comment.
Comments