OFFSET
1,3
COMMENTS
P(n) is the product [last digit of a(n) * first digit of a(n+1)].
LINKS
Jean-Marc Falcoz, Table of n, a(n) for n = 1..174
EXAMPLE
The sequence starts with 0,1,11,101,12,51,13,41,501,111,...
Let's make the successive products of [the last digit of a(n) * the first digit of a(n+1)]; we have [0*1] = 0; then [1*1] = 1; then [1*1] = 1; then [1*1] = 1; then [2*5] = 10; then [1*1] = 1; then [3*4] = 12; then [1*5] = 5; then [1*1] = 1; etc.
Those successive products build the sequence P = 0, 1, 1, 1, 10, 1, 12, 5, 1, ... and P shows the same succession of digits as the starting sequence.
CROSSREFS
KEYWORD
base,nonn
AUTHOR
Eric Angelini and Jean-Marc Falcoz, Aug 31 2018
STATUS
approved