OFFSET
1,1
COMMENTS
In other words: Counting the zeros (j=0) in the term gives the first concatenation of decimal digits (number of zeros) in the term, counting all ones, gives the second, and so on.
A term can have any number of digits.
This sequence is in base 10.
LINKS
Michael S. Branicky, Table of n, a(n) for n = 1..30
Michael S. Branicky, Python Program
EXAMPLE
1040110000031000 is a term: we have ten 0's, four 1's, zero 2's, one 3, one 4, three 10's and one 11 as integers in the term, visualized as follows:
Integers(j): 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14
term: 10 4 0 1 1 0 0 0 0 0 3 1 0 0 0
Notice that overlapping integers are counted so 110 is one 11, one 10 (or 111 would be two 11's).
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Marc Morgenegg, Dec 14 2022
EXTENSIONS
a(17)-a(20) from Michael S. Branicky, Dec 14 2022
STATUS
approved