OFFSET
1,1
COMMENTS
No other prime apart from initial 5.
LINKS
David A. Corneth, Table of n, a(n) for n = 1..764
EXAMPLE
a(7) = 65 and 65 has 7 partitions of three numbers, x, y and z, for which sigma(65) = sigma(x) + sigma(y) + sigma(z) = 84. In fact:
sigma(2) + sigma(14) + sigma(49) = 3 + 24 + 57 = 84;
sigma(3) + sigma(7) + sigma(55) = 4 + 8 + 72 = 84;
sigma(3) + sigma(23) + sigma(39) = 4 + 24 + 56 = 84;
sigma(5) + sigma(5) + sigma(55) = 6 + 6 + 72 = 84;
sigma(7) + sigma(19) + sigma(39) = 8 + 20 + 56 = 84;
sigma(10) + sigma(14) + sigma(41) = 18 + 24 + 42 = 84;
sigma(13) + sigma(13) + sigma(39) = 14 + 14 + 56 = 84;
Furthermore 65 is the minimum number to have this property.
MATHEMATICA
f[n_] := Count[IntegerPartitions[n, {3}], _?(Total[DivisorSigma[1, #]] == DivisorSigma[1, n] &)]; With[{s = Array[f, 600]}, TakeWhile[FirstPosition[s, #] & /@ Range[Max[s]] // Flatten, !MissingQ[#] &]] (* Amiram Eldar, Aug 02 2024 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Paolo P. Lava, Aug 01 2024
STATUS
approved