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.

A354559 The number of terms of A354558 that are <= 10^n.

Original entry on oeis.org

1, 2, 5, 13, 28, 79, 204, 549, 1509, 4231, 12072, 36426, 112589
Offset: 1

Views

Author

Amiram Eldar, May 30 2022

Keywords

Comments

The data is from De Koninck et al. (2013).

Examples

			There is one term <= 10 in A354558, 8, therefore a(1) = 1.
There are 2 terms <= 10^2 in A354558, 8 and 49, therefore a(2) = 2.
		

Crossrefs

Cf. A354558.

Programs

  • Mathematica
    q[n_] := FactorInteger[n][[-1, 2]] > 1; c[s_, n_] := Count[s, _?(# <= n &)]; m = 6; c[Select[Range[10^m], q[#] && q[# + 1] &], #] & /@ (10^Range[m])

Extensions

a(12) from Daniel Suteu, Jun 03 2022
a(13) from Daniel Suteu, Jun 05 2022