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

A355846
a(n) = A066653(n+1)/3.
2
1, 2, 5, 7, 10, 17, 23, 38, 47, 58, 70, 77, 95, 103, 107, 110, 137, 143, 170, 182, 205, 215, 217, 238, 247, 278, 283, 287, 298, 313, 322, 347, 355, 373, 385, 397, 443, 455, 467, 542, 562, 565, 577, 590, 593, 653, 655, 667, 670, 682, 703, 707, 710, 737, 758, 773, 787, 835, 907
OFFSET
1,2
COMMENTS
Apart from the initial 2 in A066653, same as (A066653)/3. All terms are squarefree. No term is a multiple of 3.
LINKS
MATHEMATICA
(Select[Prime@ Range[3, 720], And[SquareFreeQ[(# + 1)/2], PrimeQ[# + 2]] &] + 1)/6 (* Michael De Vlieger, Jul 25 2022 *)
PROG
(PARI) isok(k) = issquarefree(k) && isprime(2*k-1) && isprime(2*k+1); \\ A066653
lista(nn) = my(list = List()); for (n=3, nn, if (isok(n), listput(list, n/3)); ); Vec(list); \\ Michel Marcus, Jul 25 2022
CROSSREFS
Cf. A066653.
Sequence in context: A156779 A345127 A226813 * A362388 A076802 A226650
KEYWORD
nonn
AUTHOR
Wesley Ivan Hurt, Jul 18 2022
STATUS
approved