login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A180636
Positive integers that are divisible by neither 8k-1 nor 8k+1, for all k > 0.
1
1, 2, 3, 4, 5, 6, 8, 10, 11, 12, 13, 16, 19, 20, 22, 24, 26, 29, 32, 37, 38, 40, 43, 44, 48, 52, 53, 58, 59, 61, 64, 67, 74, 76, 80, 83, 86, 88, 96, 101, 104, 106, 107, 109, 116, 118, 122, 128, 131, 134, 139, 148, 149, 152, 157, 160, 163, 166, 172, 173, 176, 179, 181, 192
OFFSET
1,2
LINKS
MATHEMATICA
fQ[n_] := Union[ MemberQ[{1, 7}, # ] & /@ Union@ Mod[ Rest@ Divisors@ n, 8]] == {False}; fQ[1] = True; Select[ Range@ 200, fQ] (* Robert G. Wilson v, Oct 06 2010 *)
PROG
(Python) # Works in Python 2 or 3
import itertools
for n in itertools.count(1):
for k in range(1, 2+n//8):
if n%(8*k-1)==0 or n%(8*k+1)==0:
break
else:
print(n)
CROSSREFS
Cf. A047424. - Robert G. Wilson v, Oct 06 2010
Sequence in context: A243494 A302505 A102705 * A182625 A333909 A088232
KEYWORD
easy,nonn
AUTHOR
Glenn G. Chappell, Sep 13 2010
EXTENSIONS
More terms from Robert G. Wilson v, Oct 06 2010
STATUS
approved