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

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A076770 Even numbers representable as the sum of two odd composites. 0
18, 24, 30, 34, 36, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148 (list; graph; refs; listen; history; internal format)
OFFSET

1,1

COMMENTS

If n is even and n>38, at least one of (n-15), (n-25), (n-35) is an odd number divisible by 3 and greater than 3. [Jack Brennen]

EXAMPLE

40=15+25

PROG

(PARI) v=vector(5000); vc=1; forstep (n=9, 300, 2, if (isprime(n), continue, forstep (j=9, 300, 2, if (isprime(j), continue, x=n+j; fl=true; for (i=1, vc, if (v[i]==x, fl=false; break)); if (fl==true, v[vc]=x; vc++))))); print(vc); v=vecsort(vecextract(v, concat("1..", vc-1)))

CROSSREFS

Cf. A118081.

Sequence in context: A002505 A050772 A086473 * A105679 A160810 A076771

Adjacent sequences:  A076767 A076768 A076769 * A076771 A076772 A076773

KEYWORD

nonn

AUTHOR

Jon Perry (perry(AT)globalnet.co.uk), Nov 14 2002

EXTENSIONS

Corrected by Don Reble (djr(AT)nk.ca), Nov 20 2006

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 16 08:13 EST 2012. Contains 205893 sequences.