A343113 Numbers having exactly 1 divisor of the form 8*k + 5.
5, 10, 13, 15, 20, 21, 25, 26, 29, 30, 35, 37, 39, 40, 42, 50, 52, 53, 55, 58, 60, 61, 63, 69, 70, 74, 75, 77, 78, 80, 84, 87, 91, 93, 95, 100, 101, 104, 106, 109, 110, 111, 115, 116, 120, 122, 126, 133, 138, 140, 141, 143, 147, 148, 149, 150, 154, 155
Offset: 1
Examples
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.
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) isA343113(n) = (res(n,8,5) == 1)