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.

A062677 Numbers with property that every divisor (except 1) contains the digit 8.

Original entry on oeis.org

83, 89, 181, 281, 283, 383, 389, 487, 587, 683, 787, 809, 811, 821, 823, 827, 829, 839, 853, 857, 859, 863, 877, 881, 883, 887, 983, 1087, 1181, 1187, 1283, 1289, 1381, 1481, 1483, 1487, 1489, 1583, 1783, 1787, 1789, 1801, 1811, 1823, 1831, 1847, 1861
Offset: 1

Views

Author

Erich Friedman, Jul 04 2001

Keywords

Comments

Subsequence of A011538, numbers with an 8. - Michel Marcus, Nov 21 2015

Examples

			7387 has divisors 83, 89 and 7387, all of which contain the digit 8.
		

Crossrefs

Programs

  • Maple
    isA062677 := proc(n)
        if n = 1 then
            return false;
        end if;
        for d in numtheory[divisors](n) minus {1} do
            convert(convert(d,base,10),set) ;
            if  not 8 in % then
                return false;
            end if;
        end do:
        true ;
    end proc:
    for n from 1 to 2000 do
        if isA062677(n) then
            printf("%d,",n) ;
        end if;
    end do: # R. J. Mathar, Mar 27 2017
  • Mathematica
    fQ[n_, dgt_] := Union[ MemberQ[#, dgt] & /@ IntegerDigits@ Rest@ Divisors@ n][[1]]; Select[ Range[2, 1900], fQ[#, 8] &] (* Robert G. Wilson v, Jun 11 2014 *)