reviewed
approved
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”).
reviewed
approved
proposed
reviewed
editing
proposed
(PARI) spf(n)=my(f=factor(n)[1, 1]); f;
first(m)={my(v=vector(m)); v[1]=127; for(i=2, m, v[i]=spf(1+prod(j=1, i-1, v[j]))); v; } /* Anders Hellström, Aug 18 2015 */
approved
editing
proposed
approved
editing
proposed
Robert Price, <a href="/A051335/b051335.txt">Table of n, a(n) for n = 1..47</a>
approved
editing
Labos E. (labos(AT)ana.sote.hu)
proposed
approved
a[ n_+1 ] =127; a[n_] := First[ Flatten[ FactorInteger[ 1+Product[ a[ j ], {j, 1, n-1} ] ] ] ]; Array[a, 10]
approved
proposed