OFFSET
1,1
LINKS
Robert Israel, Table of n, a(n) for n = 1..10000
FORMULA
a(n) = n*10^(ceiling(log_10(2*n+1))) + 2*n + 1.
EXAMPLE
a(3)=37 is the concatenation of 3 and 7.
MAPLE
seq(n*10^(ceil(log[10](2*n+1)))+2*n+1, n=1..100);
MATHEMATICA
Table[FromDigits[Join[IntegerDigits[n], IntegerDigits[2n+1]]], {n, 50}] (* Harvey P. Dale, Jan 30 2024 *)
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Robert Israel, Aug 17 2019
STATUS
approved