OFFSET
1,1
COMMENTS
If k is even and k/2 or 3*k-1 is nondeficient, or k is odd and k or (3*k-1)/2 is nondeficient, then A000326(k) is a term. - Robert Israel, Jan 29 2025
The least term that is coprime to 6 is a(2426895) = 81026029008925. - Amiram Eldar, Feb 07 2025
LINKS
Robert Israel, Table of n, a(n) for n = 1..10000
EXAMPLE
12=2^2*3 is the 3rd pentagonal number and it is smaller than the sum of its proper divisors (1+2+3+4+6=16).
70=2*5*7 is the 7th pentagonal number and it is smaller than the sum of its proper divisors (1+2+5+7+10+14+35=74).
176=2^4*11 is the 11th pentagonal number and it is smaller than the sum of its proper divisors (1+2+4+8+11+16+22+44+88=196).
MAPLE
select(t -> numtheory:-sigma(t) > 2*t, [seq(k*(3*k-1)/2, k=1..300)]); # Robert Israel, Jan 28 2025
MATHEMATICA
Select[Table[k*(3*k-1)/2, {k, 1, 150}], DivisorSigma[-1, #] > 2 &] (* Amiram Eldar, Dec 19 2024 *)
PROG
(PARI) select(x->(sigma(x)>2*x), vector(150, k, k*(3*k-1)/2)) \\ Michel Marcus, Dec 20 2024
CROSSREFS
KEYWORD
nonn
AUTHOR
Massimo Kofler, Dec 19 2024
STATUS
approved