OFFSET
1,1
REFERENCES
If k is a term, then at least one of k and k+1 is in A375211.
Contains (10^k - 4)/3, (10^k - 1)/3, (10^k + 2)/3, (2*10^k - 5)/3 and (2*10^k - 2)/3 for each k >= 1.
LINKS
Robert Israel, Table of n, a(n) for n = 1..5000
EXAMPLE
a(8) = 15 is a term because 15 * 16 = 240 and none of its digits 2, 4, 0 occur in 15 or 16.
16 is not a term because 16 * 17 = 272 contains the digit 7 which also occurs in 17.
MAPLE
filter:= t -> (convert(convert(t, base, 10), set) union convert(convert(t+1, base, 10), set)) intersect convert(convert(t*(t+1), base, 10), set) = {}:
select(filter, [$1..1000]);
MATHEMATICA
A380878Q[k_] := Intersection[Join[IntegerDigits[k], IntegerDigits[k+1]], IntegerDigits[k*(k+1)]] == {};
Select[Range[500], A380878Q] (* Paolo Xausa, Feb 07 2025 *)
PROG
(PARI) isok(k) = my(s=Set(digits(k)), t=Set(digits(k+1)), u=Set(digits(k*(k+1)))); (#setintersect(s, u)==0) && (#setintersect(t, u)==0); \\ Michel Marcus, Feb 07 2025
CROSSREFS
KEYWORD
nonn,base,new
AUTHOR
Robert Israel, Feb 07 2025
STATUS
approved