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!)
A254325 Sequence of semiprimes with all cumulating sums being semiprime. 1
4, 6, 15, 26, 55, 111, 237, 469, 926, 1858, 3711, 7419, 14849, 29693, 59435, 118821, 237722, 475378, 950738, 1901474, 3802967, 7605921, 15211942, 30423869, 60847667, 121695326, 243390743, 486781401, 973562795, 1947125641, 3894251303, 7788502531, 15577005118 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
a(1)=4, then a(n) is the least semiprime > a(n-1) such that a(1)+...+a(n) is semiprime.
LINKS
EXAMPLE
4+6=10=2*5, 10+15=25=5*5, 25+26=51=3*17.
MATHEMATICA
s={4}; a=4; Do[m=a+1; While[2!=PrimeOmega[m]||2!=PrimeOmega[m+a], m++]; AppendTo[s, m]; a=m+a, {50}]; s
PROG
(PARI){s=[4]; a=4;
for(k=1, 50, m=a+1while(2<>bigomega(m)||2<>bigomega(m+a), m++);
s=concat(s, m); a=m+a); s}
CROSSREFS
Cf. A001358 (semiprimes), A065516.
Sequence in context: A128620 A358438 A045907 * A351145 A034299 A007135
KEYWORD
nonn
AUTHOR
Zak Seidov, Feb 05 2015
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 11:31 EDT 2024. Contains 371792 sequences. (Running on oeis4.)