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!)
A261703 Euclid-Mullin sequence (A000945) with initial value a(1) = 139 instead of a(1) = 2. 0
139, 2, 3, 5, 43, 11, 7, 13, 179489311, 320377, 827, 3895650091, 151, 17, 823, 191, 8648810893, 17548807, 83, 127, 15440491576811767, 106961, 2143, 59, 30689, 71, 26538557132758528345706017618160870665435147, 23, 29, 11721253, 1358804471, 5930216438678837, 39161, 619 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
139 was chosen because of the relatively small initial values a(1), .., a(16).
LINKS
Pollack, Paul; Treviño, Enrique, The Primes that Euclid Forgot.
MATHEMATICA
f[1] = 139; f[n_] := f[n] = FactorInteger[Product[f[i], {i, 1, n - 1}] + 1][[1, 1]] ; Table[f[n], {n, 1, 20}] (* Michael De Vlieger, Aug 28 2015, after program at A000945 *)
PROG
(PARI) spf(n)=factor(n)[1, 1]
first(m)=my(v=vector(m)); v[1]=139; print1(v[1], ", "); for(i=2, m, v[i]=spf(1+prod(k=1, i-1, v[k]));; print1(v[i], ", ")); v;
CROSSREFS
Sequence in context: A223192 A199839 A005447 * A266003 A340800 A333135
KEYWORD
nonn
AUTHOR
Anders Hellström, Aug 28 2015
EXTENSIONS
More terms from Jinyuan Wang, Jul 02 2022
a(34) from Tyler Busby, Oct 12 2023
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 25 03:15 EDT 2024. Contains 371964 sequences. (Running on oeis4.)