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

A352580
Numbers k such that A001414(k)*A001414(k+1)+A001414(k)+A001414(k+1) is prime.
2
1, 2, 3, 4, 6, 13, 14, 18, 19, 20, 23, 24, 28, 38, 40, 42, 44, 45, 48, 52, 53, 63, 68, 80, 81, 83, 87, 88, 89, 90, 91, 94, 95, 99, 106, 107, 109, 112, 118, 121, 122, 123, 133, 134, 135, 137, 145, 146, 148, 149, 153, 158, 159, 162, 164, 166, 173, 175, 176, 179, 183, 184, 188, 196, 202, 207, 209
OFFSET
1,2
COMMENTS
Numbers k such that (A001414(k)+1)*(A001414(k+1)+1)-1 is prime.
LINKS
EXAMPLE
a(5)=6 is a term because A001414(6) = 2+3 = 5, A001414(7) = 7, and 5*7+5+7 = 47 is prime.
MAPLE
spf:= proc(n) local t; add(t[1]*t[2], t=ifactors(n)[2]) end proc:
select(t -> isprime((spf(t)+1)*(spf(t+1)+1)-1), [$1..1000]);
CROSSREFS
Cf. A001414.
Sequence in context: A018738 A018765 A274694 * A377121 A096988 A066463
KEYWORD
nonn
AUTHOR
J. M. Bergot and Robert Israel, Mar 21 2022
STATUS
approved