OFFSET
1,1
LINKS
Jianing Song, Table of n, a(n) for n = 1..10000
EXAMPLE
52 is a term since among the divisors of 52 (namely 1, 2, 4, 13, 26 and 52), the only divisor congruent to 5 modulo 8 is 13.
PROG
(PARI) res(n, a, b) = sumdiv(n, d, (d%a) == b)
isA343113(n) = (res(n, 8, 5) == 1)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Jianing Song, Apr 05 2021
STATUS
approved