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.

A330900 Number of terms of A066038 that do not exceed 10^n.

Original entry on oeis.org

0, 2, 22, 130, 1196, 11698, 107315, 961924, 8641491, 78304633, 714962670, 6572968299
Offset: 0

Views

Author

Amiram Eldar, May 01 2020

Keywords

Comments

Luca & Moodley (2020) conjectured that a(n) ~ exp(gamma) * A006880(n).

Examples

			There are 2 terms of A066038 not exceeding 10^1: 6 and 10. Thus a(1) = 2.
		

Crossrefs

Programs

  • Mathematica
    b[1] = 0; b[n_] := Plus @@ FactorInteger[n][[;; , 1]]; bQ[n_] := PrimeNu[n] > 1 && PrimeQ[b[n]]; p = 1; s = 0; seq = {}; Do[If[bQ[n], s++]; If[n == p, p *= 10; AppendTo[seq, s]], {n, 1, 10^6}]; seq

Extensions

a(11) from Giovanni Resta, May 05 2020