login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A063145
Composite numbers not divisible by 2 which in base 4 contain their largest proper factor as a substring.
1
407, 1189, 1343, 1681, 7597, 8791, 10579, 16147, 23479, 24341, 25751, 26101, 28757, 34093, 36349, 39961, 47053, 47669, 52891, 58879, 62263, 64277, 79223, 88183, 93829, 96029, 98261
OFFSET
1,1
MATHEMATICA
Do[ If[ !PrimeQ[ n ] && StringPosition[ ToString[ FromDigits[ IntegerDigits[ n, 4 ] ] ], ToString[ FromDigits[ IntegerDigits[ Divisors[ n ][ [ -2 ] ], 4 ] ] ] ] != {}, Print[ n ] ], {n, 3, 10^5, 2} ]
CROSSREFS
Cf. A062238.
Sequence in context: A118327 A213606 A343157 * A281859 A067674 A157263
KEYWORD
base,nonn
AUTHOR
Robert G. Wilson v, Aug 08 2001
STATUS
approved