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!)
A154666 Numbers k such that k-1, k+1, and k^2-k-1 are primes. 3
4, 6, 12, 42, 60, 102, 150, 192, 282, 420, 432, 462, 570, 660, 810, 882, 1062, 1230, 1320, 1872, 1950, 2550, 2712, 2730, 3120, 3252, 4020, 4092, 6090, 8220, 8862, 8970, 9042, 9240, 9720, 10140, 10530, 10710, 11550, 11832, 11970, 12252, 13680, 13902 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Note that k-1 and k+1 are twin primes and the third prime is (k-1)*(k+1)-k, the product of the twin primes minus their average.
LINKS
EXAMPLE
3*5 - 4 = 11.
5*7 - 6 = 29.
MATHEMATICA
lst={}; Do[If[PrimeQ[n-1]&&PrimeQ[n+1], If[PrimeQ[(n-1)*(n+1)-n], AppendTo[lst, n]]], {n, 8!}]; lst
Mean/@Select[Select[Partition[Prime[Range[2000]], 2, 1], Last[#]-First[#]==2&], PrimeQ[Times@@#-Mean[#]]&] (* Harvey P. Dale, Mar 17 2011 *)
PROG
(Magma) [k:k in [2..15000]| IsPrime(k-1) and IsPrime(k+1)and IsPrime(k^2-k-1)]; // Marius A. Burtea, Dec 21 2019
CROSSREFS
Sequence in context: A073167 A060202 A062624 * A050537 A114413 A068507
KEYWORD
nonn
AUTHOR
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 02:28 EDT 2024. Contains 371782 sequences. (Running on oeis4.)