login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A062653 Every divisor (except 1) contains the digit 2. 17
2, 23, 29, 127, 211, 223, 227, 229, 233, 239, 241, 251, 254, 257, 263, 269, 271, 277, 281, 283, 293, 421, 422, 482, 502, 521, 523, 526, 529, 542, 562, 727, 821, 823, 827, 829, 842, 929, 1021, 1042, 1123, 1129, 1201, 1213, 1217, 1223, 1229, 1231, 1237 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
254 has divisors 1, 2, 127 and 254, all of which contain the digit 2.
MATHEMATICA
fQ[n_, dgt_] := Union[ MemberQ[#, dgt] & /@ IntegerDigits@ Rest@ Divisors@ n][[1]]; Select[ Range[2, 1300], fQ[#, 2] &] (* Robert G. Wilson v, Jun 11 2014 *)
PROG
(Magma) [k:k in [2..1300]| forall{d:d in Set(Divisors(k)) diff {1}| 2 in Intseq(d)}]; // Marius A. Burtea, Nov 07 2019
(PARI) has2(n)=if(n==1, return(1)); !!setsearch(Set(digits(n)), 2)
is(n)=fordiv(n, d, if(!has2(d), return(0))); 1 \\ Charles R Greathouse IV, Jan 24 2020
CROSSREFS
Sequence in context: A034843 A084373 A107148 * A208272 A306086 A045708
KEYWORD
base,easy,nonn
AUTHOR
Erich Friedman, Jul 04 2001
EXTENSIONS
Offset corrected by Amiram Eldar, Nov 07 2019
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 19 19:02 EDT 2024. Contains 371798 sequences. (Running on oeis4.)