login
A082278
a(1)=1; for n >= 1, a(n+1) is minimal such that there are a(n) primes strictly between a(n) and a(n+1).
3
1, 3, 12, 60, 390, 3320, 35570, 471620, 7543118, 142663878, 3136936508, 79061105312, 2256802761948, 72223691097344
OFFSET
1,2
COMMENTS
3 is the only prime in the sequence.
EXAMPLE
There are 3 primes (5,7,11) between 3 and the next term 12.
MATHEMATICA
a[1]=1; a[2]=3; a[n_] := a[n]=1+Prime[1+Sum[a[i], {i, 1, n-1}]]
CROSSREFS
Cf. A082279.
Sequence in context: A053532 A357594 A159867 * A375813 A375809 A078162
KEYWORD
more,nonn
AUTHOR
Amarnath Murthy, Apr 13 2003
EXTENSIONS
Better description from Vladeta Jovovic, Apr 15 2003
a(14) from Chai Wah Wu, Nov 29 2019
STATUS
approved