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!)
A206288 Nonprime numbers with all divisors starting with digit 1. 4
1, 121, 143, 169, 187, 1111, 1133, 1177, 1199, 1243, 1313, 1331, 1339, 1391, 1397, 1417, 1441, 1469, 1507, 1529, 1573, 1639, 1651, 1661, 1703, 1717, 1727, 1751, 1781, 1793, 1807, 1819, 1837, 1853, 1859, 1903, 1919, 1921, 1937, 1957, 1963, 1969, 1991 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Subsequence of A206286, A131835.
Complement of A045707 (primes with first digit 1) with respect to A202287 (numbers with all divisors starting with digit 1).
LINKS
EXAMPLE
All divisors of 1859 (1, 11, 13, 169, 1859) start with digit 1.
MAPLE
fd1:= n -> n < 2*10^ilog10(n):
filter:= proc(n) not isprime(n) and andmap(fd1, numtheory:-divisors(n)) end proc:
select(filter, [1, seq(seq(i, i=10^d+1..2*10^d-1, 2), d=1..3)]); # Robert Israel, Mar 13 2019
MATHEMATICA
fQ[n_] := Module[{d = Divisors[n]}, Union[IntegerDigits[#][[1]] & /@ d] == {1}]; Select[Range[1991], ! PrimeQ[#] && fQ[#] &] (* T. D. Noe, Feb 13 2012 *)
CROSSREFS
Cf. A045707 (primes with first digit 1), A202287 (numbers with all divisors starting with digit 1).
Sequence in context: A038511 A285784 A062649 * A287390 A258202 A242372
KEYWORD
nonn,base
AUTHOR
Jaroslav Krizek, Feb 12 2012
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 23 15:20 EDT 2024. Contains 371916 sequences. (Running on oeis4.)