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.

A265013 Numbers n such that n*9^n + 1 is prime.

Original entry on oeis.org

2, 12382, 27608, 31330, 117852
Offset: 1

Views

Author

Tim Johannes Ohrtmann, Nov 30 2015

Keywords

Comments

All terms are even. - Robert Israel, Jan 18 2016

Crossrefs

Programs

  • Magma
    [n: n in [0..100000] | IsPrime(n*9^n+1)];
  • Mathematica
    Select[Range[100000], PrimeQ[# 9^# + 1] &]
  • PARI
    for(n=1,100000, if(isprime(n*9^n+1), print1(n,", ")))