login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A366820
a(n) is the sum of the divisors of n^n + 1.
2
3, 3, 6, 56, 258, 6264, 52136, 1559520, 17041416, 706911048, 10102223208, 706019328000, 9101898907920, 519285252355776, 11672709747324912, 880565163670372352, 18446811354131136516, 1792353900753729655758, 54357680125881245248800, 4154723599066412190910560
OFFSET
0,1
LINKS
FORMULA
a(n) = A000203(A014566(n)).
MATHEMATICA
{3}~Join~Array[DivisorSigma[1, #^# + 1] &, 19] (* Michael De Vlieger, Oct 24 2023 *)
PROG
(PARI) a(n) = sigma(n^n+1);
KEYWORD
nonn
AUTHOR
Sean A. Irvine, Oct 24 2023
STATUS
approved