OFFSET
1,1
LINKS
Lars Blomberg, Table of n, a(n) for n = 1..58
Michel Marcus, x = a' * b'
OEIS Wiki, Arithmetic derivative.
EXAMPLE
Consider 48 as concat(4,8). We have 4’ = 4, 8’ = 12 and 4 * 12 = 48.
Consider 448 as concat(4,48). We have 4’ = 4, 48’ = 112 and 4 * 112 = 448.
MAPLE
isA259851 := proc(x)
local i, a, b;
for i from 1 to ilog10(n) do
a:=floor(n/10^i);
b:=n-a*10^i;
return true;
end if;
end do:
false ;
end proc:
for n from 1 do
if isA259851(n) then
print(n) ;
end if;
end do: # R. J. Mathar, Jul 08 2015
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Paolo P. Lava, Jul 07 2015
EXTENSIONS
More terms from Lars Blomberg, Oct 03 2015
STATUS
approved