This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A057999 #8 Jan 19 2023 03:12:37 %S A057999 2,3,5,13,37,73,433,1297,2593,10369,72577,508033,1524097,12192769, %T A057999 73156609,146313217,438939649,2633637889,23702740993,142216445953, %U A057999 1991030243329,37829574623233,416125320855553,1664501283422209,6658005133688833,126502097540087809,506008390160351233 %N A057999 a(n) is smallest prime such that a(n)-1 is a proper multiple of a(n-1)-1, with a(0) = 2. %H A057999 Amiram Eldar, <a href="/A057999/b057999.txt">Table of n, a(n) for n = 0..576</a> %F A057999 a(n) = 1 + Product_{i=1..n} A036012(i) = a(n-1) * A036012(n) + 1 - A036012(n). %t A057999 a[0] = 2; a[n_] := a[n] = Module[{k = 2*a[n - 1] - 2}, While[! PrimeQ[k + 1], k += (a[n - 1] - 1)]; k + 1]; Array[a, 25, 0] (* _Amiram Eldar_, Jan 19 2023 *) %Y A057999 Cf. A036012, A046966, A046972, A058000. %K A057999 nonn %O A057999 0,1 %A A057999 _Henry Bottomley_, Nov 02 2000