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”).

A219669
Primes neighboring a 5-smooth number.
2
2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 47, 53, 59, 61, 71, 73, 79, 89, 97, 101, 107, 109, 127, 149, 151, 163, 179, 181, 191, 193, 199, 239, 241, 251, 257, 269, 271, 359, 383, 401, 431, 433, 449, 479, 487, 499, 541, 577, 599, 601, 641, 647, 719, 751
OFFSET
1,1
COMMENTS
This is to A219528 as 3-smooth numbers A003586 are to 5-smooth numbers A051037.
LINKS
FORMULA
Primes INTERSECTION {2^i 3^j 5^k +/-1 for i,j,k >= 0}.
EXAMPLE
a(1) = 2 = 2^0 * 3^0 * 5^0 + 1 = 2^0 * 3^1 * 5^0 - 1.
MATHEMATICA
mx = 2^10; t5 = Select[Sort[Flatten[Table[2^i * 3^j * 5^k, {i, 0, Log[2, mx]}, {j, 0, Log[3, mx]}, {k, 0, Log[5, mx]}]]], # <= mx &]; Union[Select[t5 + 1, PrimeQ], Select[t5 - 1, PrimeQ]] (* T. D. Noe, Nov 25 2012 *)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Jonathan Vos Post, Nov 24 2012
EXTENSIONS
Corrected by T. D. Noe, Nov 25 2012
STATUS
approved