A343109 Numbers having no divisor of the form 8*k + 5.
1, 2, 3, 4, 6, 7, 8, 9, 11, 12, 14, 16, 17, 18, 19, 22, 23, 24, 27, 28, 31, 32, 33, 34, 36, 38, 41, 43, 44, 46, 47, 48, 49, 51, 54, 56, 57, 59, 62, 64, 66, 67, 68, 71, 72, 73, 76, 79, 81, 82, 83, 86, 88, 89, 92, 94, 96, 97, 98, 99, 102, 103, 107, 108, 112, 113
Offset: 1
Examples
9 is a term since it has no divisor congruent to 5 modulo 8.
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) isA343109(n) = (res(n,8,5) == 0)
Comments