OFFSET
1,1
LINKS
David A. Corneth, Table of n, a(n) for n = 1..10000
EXAMPLE
343 = 7^3 is present, as A000203(343) = 400 = 2^4 * 5^2, with none of the prime factors > 7.
1715 = 5 * 7^3 is present, as sigma(1715) = 2400 = 2^5 * 3 * 5^2.
PROG
(PARI) is(n) = {if(n == 1, return(0));
my(f = factor(n), s, fs);
if(f[#f~, 2] < 2, return(0));
s = sigma(f);
fs = factor(s, f[#f~, 1]);
fs[#fs~, 1] <= f[#f~, 1]
} \\ David A. Corneth, Jun 27 2024
CROSSREFS
KEYWORD
nonn
AUTHOR
Antti Karttunen, Jul 19 2020
STATUS
approved