A372607 Let a(1) = 2, f(n) = a(1)*a(2)*...*a(n-1) for n >= 1 and a(n) = nextludicnumber(f(n)+1) - f(n) for n >= 2, where nextludicnumber(x) is the smallest ludic number > x.
2, 3, 5, 7, 11, 23, 13, 25, 17
Offset: 1
Programs
-
PARI
A372607_upto(n=15, f=1)=vector(n,i,n=if(i>1, next_A003309(1+f*=n)-f,2)) \\ M. F. Hasler, Nov 02 2024
Comments