login
A293872
Numbers having '12' as a substring of their digits.
13
12, 112, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 212, 312, 412, 512, 612, 712, 812, 912, 1012, 1112, 1120, 1121, 1122, 1123, 1124, 1125, 1126, 1127, 1128, 1129, 1200, 1201, 1202, 1203, 1204, 1205, 1206, 1207, 1208, 1209, 1210, 1211, 1212, 1213, 1214, 1215, 1216, 1217, 1218
OFFSET
1,1
COMMENTS
Row 12 of A292690 and A293869. A121032 is the subsequence of multiples of 12.
FORMULA
a(n) ~ n. - Charles R Greathouse IV, Nov 02 2022
MAPLE
f:= proc(d) local i, x, y;
sort(convert({seq(seq(seq(x+10^i*12+10^(i+2)*y, y=10^(d-3-i)..10^(d-2-i)-1), x=0..10^i-1), i=0..d-3),
seq(12*10^(d-2)+x, x=0..10^(d-2)-1)}, list))
end proc:
seq(op(f(d)), d=2..4); # Robert Israel, Nov 20 2017
MATHEMATICA
Select[Range@ 1220, SequenceCount[IntegerDigits[#], {1, 2}] > 0 &] (* Michael De Vlieger, Nov 20 2017 *)
PROG
(PARI) is_A293872 = has(n, p=12, m=10^#Str(p))=until(p>n\=10, n%m==p&&return(1))
CROSSREFS
Cf. A121041, A121022, A121023, A121024, A121025, A121026, A121027, A121028, A121029, A121030, A121031, A121032, A121033, A121034, A121035, A121036, A121037, A121038, A121039, A121040: subsequences of the above, containing only multiples of the pattern p.
Sequence in context: A348150 A077754 A199357 * A044344 A130838 A225189
KEYWORD
nonn,base,easy
AUTHOR
M. F. Hasler, Oct 18 2017
STATUS
approved