OFFSET
1,1
COMMENTS
Numbers k such that the k-th triangular number mod the sum of divisors of k is prime.
LINKS
Robert Israel, Table of n, a(n) for n = 1..10000
EXAMPLE
a(5) = 21 is a term because A232324(21) = 231 mod 32 = 7 is prime.
MAPLE
filter:= n -> isprime((n*(n+1)/2) mod numtheory:-sigma(n)):
select(filter, [$1..1000]);
CROSSREFS
KEYWORD
nonn
AUTHOR
J. M. Bergot and Robert Israel, Apr 14 2022
STATUS
approved