OFFSET
1,1
COMMENTS
Add each digit of the counting numbers to its rank.
LINKS
Harvey P. Dale, Table of n, a(n) for n = 1..1000
EXAMPLE
The sequence of digits of the counting numbers is
1 2 3 4 5 6 7 8 9 1 0 1 1 1 2 1 3 1 4 1 5 1 6 1 7 1 8 1 9 2 0...
The 15th term, for instance, is a 2. Thus 2+15=17 is the 15th term of this sequence.
MATHEMATICA
Module[{dcn=Flatten[IntegerDigits/@Range[70]]}, Total/@Thread[ {dcn, Range[ Length[dcn]]}]] (* Harvey P. Dale, Mar 25 2022 *)
CROSSREFS
KEYWORD
base,easy,nonn
AUTHOR
Alexandre Wajnberg, Sep 30 2004
EXTENSIONS
More terms from Joshua Zucker, May 18 2006
STATUS
approved