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!)
A125689 Smallest number having exactly n partitions into three distinct primes. 2
1, 10, 18, 26, 31, 35, 39, 80, 49, 47, 57, 53, 63, 59, 65, 67, 248, 73, 71, 79, 85, 77, 93, 105, 332, 83, 89, 111, 97, 482, 95, 103, 101, 674, 135, 129, 115, 107, 800, 113, 1040, 121, 1010, 119, 127, 125, 153, 159, 133, 1136, 145, 131, 171, 1304, 137, 151, 1520 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
A125688(a(n)) = n and A125688(m) <> n for m < a(n).
LINKS
PROG
(PARI) \\ here b(n) is A125688.
b(n, brk=oo)={my(s=0); forprime(p=2, n\3, if((n-p)%2==0, forprime(q=p+1, (n-p)/2-1, if(isprime(n-p-q), s++; if(s>=brk, return(-1))) ))); s}
sols(n, lim, f)={my(u=vector(n), r=n); for(i=1, lim, my(t=f(i)); if(t>0 && t<=#u && !u[t], u[t]=i; r--; if(r==0, return(u)))); my(m=1); while(m<=#u && u[m], m++); u[1..m-1]}
{ my(nn=100); nn++; sols(nn, 10^4, i->b(i, nn)+1) } \\ Andrew Howroyd, Jan 06 2020
CROSSREFS
Cf. A125688.
Sequence in context: A245578 A165250 A257512 * A244573 A230356 A100992
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, Nov 30 2006
EXTENSIONS
Terms a(40) and beyond from Andrew Howroyd, Jan 06 2020
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 19:56 EDT 2024. Contains 371916 sequences. (Running on oeis4.)