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 A063766 #14 Sep 08 2022 08:45:04 %S A063766 2,7,37,223,1297,7789,46663,279941,1679627,10077721,60466181, %T A063766 362797091,2176782371,13060694051,78364164101,470184984667, %U A063766 2821109907503,16926659444771,101559956668421,609359740010513,3656158440062987,21936950640377863,131621703842267239 %N A063766 a(n) is the smallest prime >= 6^n. %H A063766 Harry J. Smith, <a href="/A063766/b063766.txt">Table of n, a(n) for n = 0..200</a> %F A063766 a(n) = A007918(A000400(n)). - _Michel Marcus_, Jun 25 2018 %t A063766 NextPrime[ n_Integer ] := (k = n + 1; While[ !PrimeQ[ k ], k++ ]; k); Table[ NextPrime[ 6^n ], {n, 0, 22} ] %t A063766 NextPrime[6^Range[0, 25]] (* _Vincenzo Librandi_, Jun 25 2018 *) %o A063766 (PARI) { for (n=0, 200, write("b063766.txt", n, " ", nextprime(6^n)); ) } \\ _Harry J. Smith_, Aug 30 2009 %o A063766 (Magma) [NextPrime(6^n): n in [0..25]];// _Vincenzo Librandi_, Jun 25 2018 %Y A063766 Cf. A000400, A007918. %K A063766 nonn %O A063766 0,1 %A A063766 _Robert G. Wilson v_, Aug 14 2001