login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A241533 Smallest prime p such that 2*prime(n) - p^2 is semiprime, or a(n)=0 if there is no such p. 4
0, 0, 2, 2, 0, 2, 3, 2, 5, 3, 2, 3, 5, 2, 3, 7, 5, 2, 7, 3, 2, 5, 5, 3, 3, 5, 2, 3, 2, 3, 7, 3, 3, 2, 3, 2, 3, 5, 5, 5, 7, 2, 13, 2, 19, 2, 3, 3, 3, 2, 7, 3, 2, 3, 3, 3, 3, 2, 3, 3, 2, 7, 5, 5, 2, 0, 13, 5, 3, 2, 3, 7, 7, 3, 3, 7, 5, 3, 3, 5, 5, 2, 7, 2, 3, 13 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
LINKS
EXAMPLE
Let n=16, then 2*prime(16) = 2*53 = 106. We have 106-4=102, 106-9=97, 106-25=81, 106-49=57, and only the last number is semiprime. So a(16)=7.
PROG
(PARI) a(n) = {for (i=1, n, if ((v = 2*prime(n) - prime(i)^2) <= 0, break; ); if (bigomega(v) == 2, return (prime(i))); ); } \\ Michel Marcus, May 09 2014
CROSSREFS
Sequence in context: A361869 A256750 A228430 * A370885 A072738 A165316
KEYWORD
nonn
AUTHOR
Vladimir Shevelev, Apr 25 2014
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 11 01:12 EDT 2024. Contains 372388 sequences. (Running on oeis4.)