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.

A220270 Number of biased numbers (A101550) less than 10^n.

Original entry on oeis.org

2, 43, 537, 5866, 61466, 630509, 6410996, 64836667, 653704646, 6578501544, 66115091613, 663868597795, 6661437722643, 66808391053328, 669760217536267, 6712237657325964, 67251395887426191
Offset: 1

Views

Author

Arkadiusz Wesolowski, Dec 11 2012

Keywords

Crossrefs

Programs

  • Mathematica
    Accumulate@Table[Length@Select[Range[10^(n - 1), 10^n - 1], FactorInteger[#][[-1, 1]] > 2*Sqrt[#] &], {n, 5}] (* or *)
    lst = {}; s = -2; Do[Do[If[PrimeQ[i] || FactorInteger[i][[-1, 1]] > 2*Sqrt[i], s++], {i, 10^(n - 1), 10^n - 1}]; AppendTo[lst, s], {n, 5}]; lst

Formula

a(n) ~ 10^n*log(2) as n -> infinity.

Extensions

a(9)-a(11) from Donovan Johnson, Dec 12 2012
a(12)-a(17) from Hiroaki Yamanouchi, Aug 31 2014