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.

A335119 Number of positive terms of A082916 not exceeding 10^n.

Original entry on oeis.org

5, 33, 233, 1734, 13487, 111460, 950039, 8282970, 73631430, 662319904, 6022446576, 55201746383
Offset: 1

Views

Author

Amiram Eldar, May 24 2020

Keywords

Examples

			Below 10 there are 5 positive terms of A082916: 1, 3, 5, 7, 9. Therefore a(1) = 5.
		

Crossrefs

Programs

  • Mathematica
    seqQ[n_] := CoprimeQ[Binomial[2*n, n], n]; seq = {}; p = 10; c = 0; Do[If[seqQ[n], c++]; If[n == p, p *= 10; AppendTo[seq, c]], {n, 1, 10^5}]; seq

Formula

a(n) ~ c * 10^n/log(10^n), where c = 1.526453... (Ford and Konyagin, 2019).

Extensions

Terms a(4)-a(11) were taken from the paper by Ford and Konyagin (2019).
a(12) from Giovanni Resta, May 24 2020