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.

Showing 1-3 of 3 results.

A302123 Numbers k such that 6*k^k - 5 is prime.

Original entry on oeis.org

2, 3, 4, 7, 8, 9, 33, 138, 251, 467, 489, 9894
Offset: 1

Views

Author

Seiichi Manyama, Apr 01 2018

Keywords

Comments

a(13) > 50000. - Robert Price, Jan 04 2020

Crossrefs

Numbers k such that b*k^k - b + 1 is prime: A301521 (b=4), this sequence (b=6).

Programs

  • Mathematica
    Select[Range[1, 1000], PrimeQ[6*#^# - 5] &] (* Vaclav Kotesovec, Apr 02 2018 *)
  • PARI
    for(n=0, 300, if(isprime(6*n^n-5), print1(n", ")))

Extensions

a(10)-a(11) from Vaclav Kotesovec, Apr 02 2018
a(12) from Robert Price, Jan 04 2020

A302137 Primes of form 10*k^k - 9.

Original entry on oeis.org

31, 2551, 111120068255580151
Offset: 1

Views

Author

Seiichi Manyama, Apr 02 2018

Keywords

Comments

The next term is too large to include.

Crossrefs

Primes of form b*k^k - b + 1: A301870 (b=4), A302124 (b=6), A302135 (b=9), this sequence (b=10).
Cf. A302136.

Formula

a(n) = 10*A302136(n)^A302136(n) - 9.

A302135 Primes of form 9*k^k - 8.

Original entry on oeis.org

7411879, 3486784393, 2567805035491
Offset: 1

Views

Author

Seiichi Manyama, Apr 02 2018

Keywords

Comments

The next term is too large to include.

Crossrefs

Primes of form b*k^k - b + 1: A301870 (b=4), A302124 (b=6), this sequence (b=9), A302137 (b=10).
Cf. A302134.

Formula

a(n) = 9*A302134(n)^A302134(n) - 8.
Showing 1-3 of 3 results.