OFFSET
1,1
LINKS
Jianing Song, Table of n, a(n) for n = 1..10000
EXAMPLE
63 is a term since among the divisors of 63 (namely 1, 3, 7, 9, 21 and 63), the only divisor congruent to 3 modulo 8 is 3.
PROG
(PARI) res(n, a, b) = sumdiv(n, d, (d%a) == b)
isA343112(n) = (res(n, 8, 3) == 1)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Jianing Song, Apr 05 2021
STATUS
approved