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-1 of 1 results.

A370663 Numbers k such that (9^k + 9*k)/9 is prime.

Original entry on oeis.org

1, 2, 4, 8, 10, 28, 1348, 1424, 12838
Offset: 1

Views

Author

Hugo Pfoertner, Feb 27 2024

Keywords

Comments

If it exists, a(10) > 50000.

Crossrefs

Programs

  • Magma
    [n: n in [1..130] |IsPrime ((9^n + 9*n) div 9)]; // Vincenzo Librandi, Jul 04 2025
  • Mathematica
    Select[Range[1,13000],PrimeQ[((9^#+9*#) / 9)]&] (* Vincenzo Librandi, Jul 04 2025 *)
  • PARI
    is(n) = ispseudoprime(9^(n-1)+n)
    
Showing 1-1 of 1 results.