OFFSET
1,1
COMMENTS
Similar to A130792 but here the sums start b + a = c, a + c = d, etc.
First six terms are also the first six Inrepfigit numbers (A128546).
Being x = concat(a,b), the problem is to find an index y such that x = b*F(y) + a*F(y+1), where F(y) is a Fibonacci number (see file with values of x, b, a, y, for 1< x <10^6, in Links). All the listed numbers admit only one unique concatenation that, through the addition process, leads to themselves. Is there any number that admits more than one single concatenation?
LINKS
Giovanni Resta, Table of n, a(n) for n = 1..900
Paolo P. Lava, Values of x, b, a, y, for 1< x <10^6
EXAMPLE
123 can be split into 1 and 23 and the Fibonacci-like sequence: 23, 1, 24, 25, 49, 74, 123, ... contains 123 itself.
MAPLE
P:=proc(n) local j, t, v; v:=array(1..100);
for j from 1 to length(n)-1 do v[1]:=n mod 10^j; v[2]:=trunc(n/10^j);
v[3]:=v[1]+v[2]; t:=3; while v[t]<n do t:=t+1; v[t]:=v[t-2]+v[t-1]; od;
if v[t]=n then RETURN(n); break; fi; od; end: seq(P(i), i=1..11107); # Paolo P. Lava, May 02 2019
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Paolo P. Lava, May 02 2019
STATUS
approved