OFFSET
1,1
COMMENTS
All numbers of the form d*10^k+1, where d = 1,2,3,4,5,6,7,8,9 and k>0, are part of the sequence except 11.
EXAMPLE
Rd(1639) = 1639*639*39*9 = 367609671, Ld(1639) = 1639*163*16*1 = 4274512 and 367609671 == 1639 (mod 4274512).
MAPLE
op(select(n->n=mul(n mod 10^k, k=1..ilog10(n)+1) mod mul(trunc(n/10^k), k=0..ilog10(n)), [$1..40001]));
MATHEMATICA
Select[Range[10^5], Mod[Times @@ Map[FromDigits, NestWhileList[Rest@ # &, IntegerDigits@ #, Length@ # > 1 &]], Times @@ Map[FromDigits, NestWhileList[Most@ # &, IntegerDigits@ #, Length@ # > 1 &]]] == # &] (* Michael De Vlieger, Feb 25 2019 *)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Paolo P. Lava, Feb 22 2019
STATUS
approved