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 A116481 #12 Jun 25 2025 11:16:10 %S A116481 2,7,37,271,3181,46703,823621,16777421,387420713,10000000207, %T A116481 285311671039,8916100448623,302875106592719,11112006825558313, %U A116481 437893890380859959,18446744073709552357,827240261886336765209 %N A116481 a(n) = n-th prime larger than n^n. %e A116481 a(3)=37 because primes larger than 3^3=27 are 29,31,37,41,... and 37 is 3rd prime > 27. %t A116481 Do[Print[Prime[PrimePi[n^n]+n]],{n,12}] %o A116481 (PARI) { a(n) = my(p); p=n^n; for(i=1,n,p=nextprime(p+1)); p; } \\ _Max Alekseyev_, Feb 01 2007 %Y A116481 Cf. A098682. %K A116481 nonn %O A116481 1,1 %A A116481 _Zak Seidov_, Feb 17 2006 %E A116481 More terms from _Jon E. Schoenfield_, Sep 07 2006 %E A116481 Further terms from _Max Alekseyev_, Feb 01 2007