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.

A162530 Numbers k whose largest divisor <= sqrt(k) equals 10.

Original entry on oeis.org

100, 110, 120, 130, 140, 150, 160, 170, 190, 200, 230, 250, 290, 310, 370, 410, 430, 470, 530, 590, 610, 670, 710, 730, 790, 830, 890, 970, 1010, 1030, 1070, 1090, 1130, 1270, 1310, 1370, 1390, 1490, 1510, 1570, 1630, 1670, 1730, 1790, 1810, 1910, 1930
Offset: 1

Views

Author

Omar E. Pol, Jul 05 2009

Keywords

Comments

See A161344 for more information.

Crossrefs

Programs

  • Maple
    filter:= n -> andmap(t -> t<=10 or t^2 > n, numtheory:-divisors(n)):
    select(filter, [seq(n,n=100..10000,10)]); # Robert Israel, Aug 16 2018
  • Mathematica
    ld10Q[n_]:=Last[Select[Divisors[n],#<=Sqrt[n]&]]==10; Select[Range[2000],ld10Q]  (* Harvey P. Dale, Jan 30 2011 *)

Formula

Numbers k such that A033676(k) = 10.

Extensions

More terms from Gerard P. Michon, Jul 12 2009