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.

A062669 Every divisor (except 1) contains the digit 4.

Original entry on oeis.org

41, 43, 47, 149, 241, 347, 349, 401, 409, 419, 421, 431, 433, 439, 443, 449, 457, 461, 463, 467, 479, 487, 491, 499, 541, 547, 641, 643, 647, 743, 941, 947, 1049, 1249, 1409, 1423, 1427, 1429, 1433, 1439, 1447, 1451, 1453, 1459, 1471, 1481, 1483, 1487
Offset: 1

Views

Author

Erich Friedman, Jul 04 2001

Keywords

Examples

			1849 has divisors 1, 43 and 1849, the last two of which contain the digit 4.
		

Crossrefs

Programs

  • Magma
    [k:k in [2..1500]| forall{d:d in Set(Divisors(k)) diff {1}| 4 in Intseq(d)}];// Marius A. Burtea, Nov 07 2019
  • Mathematica
    fQ[n_, dgt_] := Union[ MemberQ[#, dgt] & /@ IntegerDigits@ Rest@ Divisors@ n][[1]]; Select[ Range[2, 1500], fQ[#, 4] &] (* Robert G. Wilson v, Jun 11 2014 *)
    Select[Range[2,1500],AllTrue[Rest[Divisors[#]],DigitCount[#,10,4]>0&]&] (* Requires Mathematica version 10 or later *) (* Harvey P. Dale, Jun 05 2021 *)

Extensions

Offset corrected by Amiram Eldar, Nov 07 2019
Example corrected by Harvey P. Dale, Jun 05 2021