A343111 Numbers having exactly 2 divisors of the form 8*k + 1, that is, numbers with exactly 1 divisor of the form 8*k + 1 other than 1.
9, 17, 18, 25, 27, 33, 34, 36, 41, 45, 49, 50, 51, 54, 57, 63, 65, 66, 68, 72, 73, 75, 82, 85, 89, 90, 97, 98, 100, 102, 105, 108, 113, 114, 117, 119, 121, 123, 125, 126, 129, 130, 132, 135, 136, 137, 144, 145, 146, 147, 150, 161, 164, 165, 169, 170, 175
Offset: 1
Examples
63 is a term since among the divisors of 63 (namely 1, 3, 7, 9, 21 and 63), the only divisors congruent to 1 modulo 8 are 1 and 9.
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) isA343111(n) = (res(n,8,1) == 2)