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.

A187534 Numbers divisible by at least six of their digits, different and >1.

Original entry on oeis.org

243768, 247968, 248976, 297864, 364728, 367248, 376824, 427896, 428736, 432768, 469728, 478296, 478632, 483672, 623784, 627984, 634872, 689472, 732648, 742896, 746928, 762384, 768432, 789264, 796824, 824376, 836472, 873264, 897624, 927864, 976248, 978264, 1289736, 1293768, 1369872, 1372896, 1376928, 1382976, 1679328, 1679832
Offset: 1

Views

Author

Zak Seidov, Mar 11 2011

Keywords

Comments

There are 1437 terms < 10^7.
Asymptotic density 1/35 = 0.0285.... - Charles R Greathouse IV, Mar 11 2011

Crossrefs

Subsequence of A187533.

Programs

  • Mathematica
    numdig = 6; Select[Range[1679832], Length[(u = Union[Select[IntegerDigits[#], #1 > 1 &]])] >= numdig && Plus @@ (Boole@Divisible[#, u]) >= numdig &] (* Amiram Eldar, Aug 30 2020 *)
    Select[Range[2*10^5,168*10^4],Length[Select[#/Union[DeleteCases[IntegerDigits[#],1]],IntegerQ]]>5&]//Quiet (* Harvey P. Dale, Mar 18 2025 *)