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!)
A118499 Numbers k such that the k-th prime number is not a Chen prime. 1
14, 18, 21, 22, 25, 27, 36, 38, 40, 44, 48, 50, 53, 58, 59, 61, 65, 67, 70, 73, 74, 76, 78, 82, 84, 85, 88, 90, 99, 101, 108, 110, 111, 112, 114, 117, 121, 122, 125, 127, 129, 130, 131, 134, 137, 143, 147, 149, 153, 155, 158, 163, 168, 170 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
97 is the 25th prime number but not a Chen prime since 99 = 3*3*11, therefore 25 is in the sequence.
MAPLE
ts_inde_nonchen:= proc(n) local i, ans, inde; ans:=[ ]: inde := 0; for i from 1 to n do if ( isprime(i) = 'true') then inde:=inde+1: if (isprime(i+2) = 'false' and numtheory[bigomega](i+2) <> 2) then ans:=[ op(ans), inde ] fi fi od: return ans end: ts_inde_nonchen(2000);
MATHEMATICA
Select[Range[180], Sum[FactorInteger[Prime[ # ]+2][[i, 2]], {i, 1, Length[ FactorInteger[Prime[ # ] + 2]]}] > 2 &]
PROG
(PARI) isok(k) = (bigomega(prime(k)+2) > 2); \\ Michel Marcus, Oct 19 2021
CROSSREFS
Sequence in context: A060504 A052026 A317743 * A111205 A097324 A051419
KEYWORD
nonn
AUTHOR
Jani Melik, May 05 2006
EXTENSIONS
Edited by Stefan Steinerberger, Jul 19 2007
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 April 19 19:02 EDT 2024. Contains 371798 sequences. (Running on oeis4.)