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.

This page as a plain text file.
%I A335119 #15 May 24 2020 16:13:58
%S A335119 5,33,233,1734,13487,111460,950039,8282970,73631430,662319904,
%T A335119 6022446576,55201746383
%N A335119 Number of positive terms of A082916 not exceeding 10^n.
%H A335119 Kevin Ford and Sergei Konyagin, <a href="https://arxiv.org/abs/1909.03903">Divisibility of the central binomial coefficient binomial(2n, n)</a>, arXiv:1909.03903 [math.NT], 2019. See Table 2.
%F A335119 a(n) ~ c * 10^n/log(10^n), where c = 1.526453... (Ford and Konyagin, 2019).
%e A335119 Below 10 there are 5 positive terms of A082916: 1, 3, 5, 7, 9. Therefore a(1) = 5.
%t A335119 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
%Y A335119 Cf. A000984, A082916.
%K A335119 nonn,more
%O A335119 1,1
%A A335119 _Amiram Eldar_, May 24 2020
%E A335119 Terms a(4)-a(11) were taken from the paper by Ford and Konyagin (2019).
%E A335119 a(12) from _Giovanni Resta_, May 24 2020