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!)
A209292 Non-semiprimes n such that 2n+1 are non-semiprimes. 0
1, 2, 3, 5, 8, 11, 13, 18, 20, 23, 29, 30, 31, 36, 37, 40, 41, 44, 48, 50, 52, 53, 54, 56, 63, 67, 68, 73, 75, 76, 78, 81, 83, 89, 90, 96, 97, 98, 99, 103, 105, 112, 113, 114, 116, 120, 125, 127, 128, 130, 131, 135, 136, 137, 138, 139, 140, 148, 153, 156 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
This is to A005384 as nonsemiprimes A100959 are to primes A000040.
LINKS
FORMULA
{n such that n is in A100959, and 2*n + 1 is in A100959} = {n such that n is not in A001358, and 2*n + 1 is not in A001358}.
a(n) ~ n. - Charles R Greathouse IV, Jan 16 2013
EXAMPLE
a(1) = 1 because 1 is not a semiprime (the smallest semiprime is 4), and 2*1 + 1 = 3 is not a semiprime.
7 is not a semiprime, but 2*7 + 1 = 15 = 3*5 is a semiprime, so 7 is not in this sequence.
MATHEMATICA
SemiPrimeQ[n_Integer] := If[Abs[n] < 2, False, (2 == Plus @@ Transpose[FactorInteger[Abs[n]]][[2]])]; Select[Range[200], ! SemiPrimeQ[#] && ! SemiPrimeQ[2 # + 1] &] (* T. D. Noe, Jan 17 2013 *)
PROG
(PARI) is(n)=bigomega(n)!=2 && bigomega(2*n+1)!=2 \\ Charles R Greathouse IV, Jan 16 2013
CROSSREFS
Sequence in context: A246361 A228855 A171048 * A185371 A071894 A301892
KEYWORD
nonn,easy
AUTHOR
Jonathan Vos Post, Jan 16 2013
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 24 08:59 EDT 2024. Contains 371935 sequences. (Running on oeis4.)