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.

A062676 Composite and every divisor (except 1) contains the digit 7.

Original entry on oeis.org

497, 679, 749, 799, 1207, 1379, 1739, 1799, 1897, 2479, 2627, 2701, 2779, 3337, 3713, 3997, 4607, 4709, 4711, 4739, 4757, 4907, 5173, 5257, 5327, 5579, 5729, 5767, 5789, 6179, 6749, 6769, 6797, 6887, 6979, 7081, 7169, 7289, 7379, 7597, 7609, 7663
Offset: 1

Views

Author

Erich Friedman, Jul 04 2001

Keywords

Examples

			799 has divisors 17, 47 and 799, all of which contain the digit 7.
		

Crossrefs

Programs

  • Magma
    [k:k in [2..8000]|  not IsPrime(k) and forall{d:d in Set(Divisors(k)) diff {1}| 7 in Intseq(d)}];// Marius A. Burtea, Nov 07 2019
  • Mathematica
    fQ[n_, dgt_] := Union[ MemberQ[#, dgt] & /@ IntegerDigits@ Rest@ Divisors@ n][[1]]; Select[ Range[2, 7670], !PrimeQ[#] && fQ[#, 7] &] (* Robert G. Wilson v, Jun 11 2014 *)

Extensions

Offset corrected by Amiram Eldar, Nov 07 2019