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!)
A071541 Number of k's less than or equal to 10^n such that there are middle divisors of k (A071562). 1
6, 43, 336, 2932, 26870, 252756, 2409731, 23169860, 224059958, 2175865640 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
FORMULA
a(n) = 10^n - A071540(n). - Amiram Eldar, Jul 27 2024
MATHEMATICA
f[n_] := Plus @@ Select[ Divisors[n], Sqrt[n/2] <= # < Sqrt[n*2] &]; s = 0; k = 0; Do[ While[k < 10^n, k++; If[ f[k] != 0, s++ ]]; Print[s], {n, 1, 7}]
PROG
(PARI) lista(nmax) = {my(c = 0, pow = 10); for(k = 1, 10^nmax, if(sumdiv(k, d, if(d^2 >= k/2 && d^2 < 2*k, d, 0)) > 0, c++); if(k == pow, print1(c, ", "); pow *= 10)); } \\ Amiram Eldar, Jul 27 2024
CROSSREFS
Sequence in context: A098665 A153397 A005786 * A146966 A240653 A220097
KEYWORD
nonn,hard,more
AUTHOR
Robert G. Wilson v, May 31 2002
EXTENSIONS
a(8) from Sean A. Irvine, Jul 25 2024
a(9)-a(10) from Amiram Eldar, Jul 27 2024
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 September 17 04:31 EDT 2024. Contains 375985 sequences. (Running on oeis4.)