A343112 Numbers having exactly 1 divisor of the form 8*k + 3.
3, 6, 9, 11, 12, 15, 18, 19, 21, 22, 24, 30, 35, 36, 38, 39, 42, 43, 44, 45, 48, 55, 59, 60, 63, 67, 69, 70, 72, 76, 77, 78, 83, 84, 86, 87, 88, 90, 91, 93, 95, 96, 107, 110, 111, 115, 117, 118, 120, 121, 126, 131, 133, 134, 138, 139, 140, 141, 143, 144
Offset: 1
Examples
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.
Links
- Jianing Song, Table of n, a(n) for n = 1..10000
Crossrefs
Programs
-
PARI
res(n,a,b) = sumdiv(n, d, (d%a) == b) isA343112(n) = (res(n,8,3) == 1)