login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A220270 Number of biased numbers (A101550) less than 10^n. 0
2, 43, 537, 5866, 61466, 630509, 6410996, 64836667, 653704646, 6578501544, 66115091613, 663868597795, 6661437722643, 66808391053328, 669760217536267, 6712237657325964, 67251395887426191 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
G. Everest, S. Stevens, D. Tamsett and T. Ward, Primes Generated by Recurrence Sequences, arXiv:math/0412079 [math.NT], 2004-2006.
FORMULA
a(n) ~ 10^n*log(2) as n -> infinity.
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
CROSSREFS
Sequence in context: A349927 A112097 A354304 * A240550 A142199 A109948
KEYWORD
more,nonn
AUTHOR
EXTENSIONS
a(9)-a(11) from Donovan Johnson, Dec 12 2012
a(12)-a(17) from Hiroaki Yamanouchi, Aug 31 2014
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 16:40 EDT 2024. Contains 371916 sequences. (Running on oeis4.)