OFFSET
0,1
COMMENTS
If all the three numbers have the same number of digits then the terms are in A.P. with a common difference that follows a pattern with increase in number of digits. E.g. for n = 1 to 7 the common difference, c.d. = 37. For n = 10 to 97 c.d. = 3367, For three digit numbers from 100 to 997 it is 333667 etc.
EXAMPLE
a(4) = 456/3 = 152.
MAPLE
read("transforms") ;
A074991 := proc(n)
digcatL([n, n+1, n+2]) ;
%/3 ;
end proc:
seq(A074991(n), n=0..50) ; # R. J. Mathar, Oct 04 2011
MATHEMATICA
f[n_] := FromDigits@ Flatten@ IntegerDigits[{n, n + 1, n + 2}]/3; Array[f, 26, 0] (* Robert G. Wilson v *)
CROSSREFS
KEYWORD
base,nonn
AUTHOR
Amarnath Murthy, Aug 31 2002
EXTENSIONS
Incorrect conjecture deleted by Colin Barker, Sep 26 2013
STATUS
approved