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.

A145852 Primes of the form k followed by a 0 and k 9's.

Original entry on oeis.org

109, 2099, 409999, 1909999999999999999999, 2809999999999999999999999999999, 41099999999999999999999999999999999999999999, 7609999999999999999999999999999999999999999999999999999999999999999999999999999
Offset: 1

Views

Author

Lekraj Beedassy, Oct 21 2008

Keywords

Comments

Primes of the form k*10^(k+1) + 10^k - 1.

Crossrefs

Programs

  • PARI
    lista(nn) = for(k=1, nn, if(ispseudoprime(q=k*10^(k+1)+10^k-1), print1(q, ", "))); \\ Jinyuan Wang, Mar 24 2020