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.

A255816 Number of primes in A065381 less than 10^n.

Original entry on oeis.org

1, 1, 16, 130, 1246, 11577, 102613, 931944, 8573235, 78557819, 723625420, 6738938504
Offset: 1

Views

Author

Arkadiusz Wesolowski, Mar 24 2015

Keywords

Crossrefs

Programs

  • PARI
    isA065381(p) = if(p == 2, 1, my(pow = 1); while(pow < p && !isprime(p - pow), pow *= 2); pow > p);
    list(len) = {my(pow = 10, c = 0); forprime(p = 1, 10^len, if(p > pow, print1(c, ", "); pow *= 10); if(isA065381(p), c++));} \\ Amiram Eldar, Jul 19 2025

Extensions

a(10)-a(12) from Amiram Eldar, Jul 19 2025