login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A132992 Twin prime pair averages n such that 3*n and 9*n are also averages of twin prime pairs. 1
32970, 180180, 273000, 633570, 879690, 991620, 1189650, 2219490, 3229380, 4111170, 4515630, 7384440, 7392630, 7398930, 7431270, 9022440, 9861390, 12183360, 12307680, 12866280, 14619990, 14717640, 14917560, 15458100 (list; graph; refs; listen; history; internal format)
OFFSET

1,1

LINKS

K. Brockhaus, Table of n, a(n) for n = 1..384.

EXAMPLE

32970, 3*32970 = 98910, 9*32970 = 296730 are averages of twin prime pairs.

MATHEMATICA

TwinPrimeAverageQ[n_]:=If[PrimeQ[n-1]&&PrimeQ[n+1], True, False](*TwinPrimeAverageQ*)lst={}; Do[If[TwinPrimeAverageQ[n], If[TwinPrimeAverageQ[3*n], If[TwinPrimeAverageQ[9*n], (*Print[n]; *)AppendTo[lst, n]]]], {n, 7!, 3*10!}]; lst

PROG

(MAGMA) [ a: p in PrimesUpTo(16000000) | IsPrime(a+1) and IsPrime(3*a-1) and IsPrime(3*a+1) and IsPrime(9*a-1) and IsPrime(9*a+1) where a is p+1 ]; [From Klaus Brockhaus, Dec 04 2009]

CROSSREFS

Cf. A014574 (average of twin prime pairs).

Sequence in context: A183889 A168666 A170780 * A153748 A170789 A118278

Adjacent sequences:  A132989 A132990 A132991 * A132993 A132994 A132995

KEYWORD

nonn

AUTHOR

Vladimir Orlovsky (4vladimir(AT)gmail.com), Aug 26 2008

EXTENSIONS

Edited and extended by Klaus Brockhaus (klaus-brockhaus(AT)t-online.de), Dec 04 2009

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 15 07:42 EST 2012. Contains 205717 sequences.