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 A051896 #16 Apr 18 2022 19:18:26 %S A051896 2,3,5,6,9,55,66,77,88,161,191,313,484,494,525,747,3223,3993,11711, %T A051896 13431,13731,18881,19691,21012,21112,22422,24242,34443,35353,41114, %U A051896 44244,44844,46664,52225,52925,53935,58385,59895,60806,64146,71917 %N A051896 a(n) = smallest palindrome > a(n-1) such that a(1)*a(2)*...*a(n) + 1 is prime with a(1) = 2. %H A051896 Chai Wah Wu, <a href="/A051896/b051896.txt">Table of n, a(n) for n = 1..200</a> %t A051896 nxt[{t_,a_}]:=Module[{k=a+1},While[(!PalindromeQ[k])||CompositeQ[k*t+1],k++];{t*k,k}]; NestList[nxt,{2,2},40][[All,2]] (* _Harvey P. Dale_, Apr 18 2022 *) %Y A051896 Cf. A046966, A051934, A051954. %Y A051896 Subsequence of A002113. %K A051896 easy,nice,nonn,base %O A051896 1,1 %A A051896 _Felice Russo_, Dec 21 1999 %E A051896 Initial conditions added to description by _Chai Wah Wu_, Apr 16 2021