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!)
A105525 Smallest prime forming a product of n distinct primes when a 1 is appended to it. 1
3, 2, 23, 821, 14387, 131231, 4976687, 87200213, 6746125577, 121926946241, 5509396663871, 254605525405331, 12690278491719929, 565269607109838731, 32485826999091637271, 2154833052882128071553, 156066104202356713394129 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
We have a(2)=2 because 2 is the first prime ahead of 5,11,29,37,... each becoming a product of two distinct primes with an appended 1.
PROG
(PARI) {r(n, p, d)=local(q); if(d==0, if(n%10==1 && isprime(n\10) && n<m, m=n); return); q=nextprime(p+1); while(n*q^d<m, r(n*q, q, d-1); q=nextprime(q+1))} {A105526(d) = M=2^16; while(1, m=M; r(1, 2, d); if(m!=M, return(m\10)); M*=2)} (Alekseyev)
CROSSREFS
Cf. A105526.
Sequence in context: A151429 A355290 A151475 * A228772 A165714 A090883
KEYWORD
nonn,base
AUTHOR
Lekraj Beedassy, Apr 11 2005
EXTENSIONS
a(5)-a(8) from Ray Chandler, Apr 16 2005
More terms from Max Alekseyev, Apr 28 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 19 09:23 EDT 2024. Contains 371782 sequences. (Running on oeis4.)