A379482 a(n) = sigma(A003961(n^2)), where A003961 is fully multiplicative with a(prime(i)) = prime(i+1), and sigma is the sum of divisors function.
1, 13, 31, 121, 57, 403, 133, 1093, 781, 741, 183, 3751, 307, 1729, 1767, 9841, 381, 10153, 553, 6897, 4123, 2379, 871, 33883, 2801, 3991, 19531, 16093, 993, 22971, 1407, 88573, 5673, 4953, 7581, 94501, 1723, 7189, 9517, 62301, 1893, 53599, 2257, 22143, 44517, 11323, 2863, 305071, 16105, 36413, 11811, 37147, 3541
Offset: 1
Links
Crossrefs
Programs
-
Mathematica
{1}~Join~Array[DivisorSigma[1, #] &[Apply[Times, Map[NextPrime[#1]^#2 & @@ # &, FactorInteger[#]] ]^2] &, 52, 2] (* Michael De Vlieger, Dec 27 2024 *)
-
PARI
A379482(n) = { my(f = factor(n)); for(i=1, #f~, f[i, 1] = nextprime(f[i, 1]+1); f[i, 2] *= 2); sigma(factorback(f)); };