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”).

a(n+1) = a(n) + p, where p is the largest prime less than a(n); a(1) = 3.
1

%I #28 May 16 2024 03:14:00

%S 3,5,8,15,28,51,98,195,388,771,1540,3071,6138,12271,24540,49073,98142,

%T 196271,392518,785021,1570038,3140045,6280086,12560153,25120300,

%U 50240589,100481176,200962343,401924670,803849309,1607698612,3215397195,6430794388,12861588761,25723177510

%N a(n+1) = a(n) + p, where p is the largest prime less than a(n); a(1) = 3.

%C After a(1) the sequence alternates between odd and even numbers (obviously).

%C There is at least 1 prime between p and 2p (Bertrand), and since there is no prime between p and a(n) there must be at least one prime between a(n) and a(n) + p. Hence the sequence continues indefinitely, and each added prime is added once only.

%C The underlying sequence of added primes is: 2, 3, 7, 13, 23, 47, 97, ...; namely A075028 or A068524 but without their initial terms (1, 2 respectively).

%C Four primes occur in the first 24 terms, a(1) = 3, a(2) = 5, a(18) = 196271, and a(24) = 12560153, suggesting a higher density of primes here than in related sequence A123196, in which only three primes arise in the first 500 terms. It would be interesting to examine this further, once more terms become available.

%H Giovanni Resta, <a href="/A285010/b285010.txt">Table of n, a(n) for n = 1..3000</a>

%F a(n) ~ c * 2^n, where c = 0.748642996358317338.... - _Bill McEachen_, May 09 2024

%e a(1) = 3, the first odd prime. The greatest prime less than 3 is 2, so a(2) = 3 + 2 = 5. Greatest prime less than 5 is 3 so a(3) = 5 + 3 = 8. Likewise a(4) = 8 + 7 = 15; etc.

%t a[1]=3; a[n_] := a[n] = a[n-1] + NextPrime[a[n-1], -1]; Array[a, 35] (* _Giovanni Resta_, Apr 10 2017 *)

%t NestList[#+NextPrime[#,-1]&,3,40] (* _Harvey P. Dale_, Aug 22 2020 *)

%o (PARI) lista(nn) = { print1(a=3, ", "); for (n=2, nn, a += precprime(a-1); print1(a, ", ");); } \\ _Michel Marcus_, Apr 08 2017

%Y Cf. A123196, A075058, A068524.

%K easy,nonn

%O 1,1

%A _David James Sycamore_, Apr 07 2017

%E More terms from _Michel Marcus_, Apr 08 2017