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.

A062670 Composite and every divisor (except 1) contains the digit 4.

Original entry on oeis.org

1849, 6407, 14227, 14309, 14921, 16403, 16441, 17243, 18409, 18847, 19049, 19147, 20459, 20941, 21457, 21479, 21949, 22427, 23453, 25427, 27649, 30409, 30463, 31949, 34921, 40463, 40721, 43009, 44227, 44509, 45107, 49303, 58343, 59491
Offset: 1

Views

Author

Erich Friedman, Jul 04 2001

Keywords

Examples

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

Crossrefs

Programs

  • Mathematica
    fQ[n_, dgt_] := Union[ MemberQ[#, dgt] & /@ IntegerDigits@ Rest@ Divisors@ n][[1]]; Select[ Range[2, 59500], !PrimeQ[#] && fQ[#, 4] &] (* Robert G. Wilson v, Jun 11 2014 *)
    d4Q[n_]:=CompositeQ[n]&&AllTrue[Rest[Divisors[n]],DigitCount[#,10,4]>0&]; Select[Range[ 60000],d4Q] (* Harvey P. Dale, Jun 20 2023 *)

Extensions

Offset corrected by Amiram Eldar, Nov 07 2019