OFFSET
1,1
COMMENTS
In general, sequences of numbers divisible by primes p and q have the form a(n+p+q-1) = a(n) + p*q.
The asymptotic density of this sequence is 13/33. - Amiram Eldar, Mar 25 2021
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
FORMULA
a(n+13) = a(n) + 33.
MAPLE
for n from 1 to 53 do if n mod 3 = 0 and n mod 11 = 0 then print(n) fi od
MATHEMATICA
Select[Range[200], GCD[#, 33] > 1 &] (* T. D. Noe, Oct 15 2013 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Gary Detlefs, Oct 11 2013
STATUS
approved