cp's OEIS Frontend

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.

A187605 Primes of the form k^k + k - 1.

This page as a plain text file.
%I A187605 #24 May 03 2022 15:29:13
%S A187605 5,29,1978419655660313589123997,
%T A187605 205891132094649000000000000000000000000000029
%N A187605 Primes of the form k^k + k - 1.
%C A187605 See A058912 for numbers k such that k^k + k - 1 is prime. Subsequence of A231712 (numbers n^n + n - 1). - _Jaroslav Krizek_, Nov 13 2013
%C A187605 The next prime has 1460 digits. - _Jinyuan Wang_, Mar 01 2020
%H A187605 <a href="/A187605/b187605.txt">Table of n, a(n) for n = 1..4</a>
%H A187605 Aldo Roberto Pessolano, <a href="/A187605/a187605.txt">Table of n, a(n) for n = 1..6</a>
%t A187605 Do[p=n^n+n-1; If[PrimeQ[p], Print[p]], {n, 100}]
%o A187605 (PARI) lista(nn) = for(k=1, nn, if(ispseudoprime(q=k^k+k-1), print1(q, ", "))); \\ _Jinyuan Wang_, Mar 01 2020
%Y A187605 Cf. A058912, A231712, A268987.
%K A187605 nonn
%O A187605 1,1
%A A187605 _Marco RipĂ _, Mar 11 2011