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!)
A112827 Least value k which is the beginning of a null Goldbach chain of length exactly n.. 0
60, 184, 242, 114, 2314, 1382 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
The first even number of A112826(k/2) consisting of a run of n zeros long.
LINKS
EXAMPLE
a(1)=60; a(2)=184 because A112825(92) and A112825(93)=0 but A112825(91) and A112825(94) are not equal to 0.
a(3)=242 because A112825(121), A112825(122) and A112825(123)=0 but A112825(120) and A112825(124) are not equal to 0.
MATHEMATICA
f[n_] := Block[{p = 2, q = n/2}, While[ !PrimeQ[p] || !PrimeQ[n - p], p++ ]; While[ !PrimeQ[q] || !PrimeQ[n - q], q-- ]; q - p]; t = Table[0, {10000}]; Do[a = f[2n]; If[a < 10000 && t[[a + 1]] == 0, t[[a + 1]] = 2n], {n, 2, 10^6}]; g = Flatten[ Position[t, 0]];
CROSSREFS
Cf. A020481.
Sequence in context: A259946 A249911 A292223 * A181333 A082529 A126248
KEYWORD
more,nonn
AUTHOR
Robert G. Wilson v, Sep 05 2005
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 07:57 EDT 2024. Contains 371905 sequences. (Running on oeis4.)