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!)
A078647 Smallest integer that can be written in exactly n ways as the sum of two primes that are congruent modulo 3. 2
4, 22, 34, 58, 94, 112, 142, 170, 220, 274, 286, 340, 280, 364, 460, 622, 520, 490, 610, 650, 670, 890, 920, 700, 850, 770, 1000, 1250, 1160, 910, 1520, 1190, 1120, 1400, 1450, 1670, 1570, 1660, 1630, 1330, 1610, 1870, 2002, 2260, 2060, 1540, 1750, 1960 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
22 is the first integer that can be written in exactly two ways as the sum of two congruent primes modulo 3: 22 = 5 + 17 (5 = 17 mod 3) and 22 = 11 + 11 (order of addition is ignored). Hence a(2) = 22.
MATHEMATICA
f[n_] := Module[{a, d, i}, a = {}; u = Floor[n/2]; For[i = 1, i <= u, i++, If[PrimeQ[i] && PrimeQ[n - i] && Mod[i, 3] == Mod[n - i, 3], a = Append[a, {n, i, n - i}]]]; a]; a = Table[0, {50}]; Do[l = Length[ f[n]]; If[l < 51 && a[[l]] == 0, a[[l]] = n], {n, 1, 2000}]; a
CROSSREFS
Sequence in context: A036921 A083510 A277586 * A031108 A350521 A163484
KEYWORD
nonn
AUTHOR
Joseph L. Pe, Dec 13 2002
EXTENSIONS
Edited and extended by Robert G. Wilson v, Dec 19 2002
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 18:16 EDT 2024. Contains 371916 sequences. (Running on oeis4.)