[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A051333
Euclid-Mullin sequence (A000945) with initial value a(1)=257 instead of a(1)=2.
1
257, 2, 5, 3, 11, 84811, 31, 7, 1560842137471, 20113, 17, 83, 47, 339491, 7814561, 109, 2897, 16103, 70921439, 199, 1381, 34987489236924545883729121, 43, 241, 37, 491, 28468486915378661, 8803, 29, 25212511, 2311, 67, 3929, 1151, 192697, 797, 157, 23, 1489, 13
OFFSET
1,1
LINKS
MATHEMATICA
a[1]=257; a[n_] := First[ Flatten[ FactorInteger[ 1+Product[ a[ j ], {j, 1, n-1} ] ] ] ]; Array[a, 10]
PROG
(PARI) spf(n)=my(f=factor(n)[1, 1]); f \\ A020639
first(m)=my(v=vector(m)); v[1]=257; for(i=2, m, v[i]=spf(1+prod(j=1, i-1, v[j]))); v \\ Anders Hellström, Dec 07 2015
CROSSREFS
KEYWORD
nonn
AUTHOR
EXTENSIONS
a(22)-a(27) from Robert Price, Jul 09 2015
a(28)-a(40) from Tyler Busby, Oct 12 2023
STATUS
approved