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!)
A176657 Numbers k such that prime(k) is not a twin prime and prime(prime(k)) is a twin prime. 1
1, 16, 23, 24, 30, 40, 55, 56, 59, 63, 68, 71, 74, 80, 87, 93, 95, 103, 106, 107, 108, 112, 118, 122, 126, 128, 129, 132, 136, 137, 150, 159, 169, 187, 188, 193, 199, 244, 248, 258, 267, 271, 276, 281, 284, 285, 292, 299, 300, 304, 310, 311, 312, 317, 325, 327 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
EXAMPLE
1 is a term because prime(1) = 2 is not a twin prime and prime(prime(1)) = 3 is a twin prime.
MAPLE
A006450 := proc(n) ithprime(ithprime(n)) ; end proc: isA176657 := proc(n) isA007510(ithprime(n)) and not isA007510(A006450(n)) ; end proc: for n from 1 to 1600 do if isA176657(n) then printf("%d, ", n) ; end if; end do: # R. J. Mathar, Apr 26 2010
MATHEMATICA
A006450[n_] := Prime[Prime[n]];
isA007510[n_] := !PrimeQ[n-2] && !PrimeQ[n+2];
isA176657[n_] := isA007510[Prime[n]] && !isA007510[A006450[n]];
Reap[For[n = 1, n <= 1000, n++, If[isA176657[n], Sow[n]]]][[2, 1]] (* Jean-François Alcover, Oct 15 2020, after Maple *)
CROSSREFS
Sequence in context: A306163 A317380 A070572 * A006616 A225929 A179370
KEYWORD
nonn
AUTHOR
EXTENSIONS
Corrected (29 removed, 126 inserted, 202 removed) and extended by R. J. Mathar, Apr 26 2010
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 23 20:33 EDT 2024. Contains 371916 sequences. (Running on oeis4.)