cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-1 of 1 results.

A340620 T(n,k) is the number of 4-ary strings of length n+1 with k+1 indispensable digits and a nonzero leading digit with 0 <= k <= n.

Original entry on oeis.org

3, 6, 6, 10, 28, 10, 15, 81, 81, 15, 21, 186, 354, 186, 21, 28, 371, 1137, 1137, 371, 28, 36, 672, 3018, 4836, 3018, 672, 36, 45, 1134, 7023, 16374, 16374, 7023, 1134, 45, 55, 1812, 14829, 47286, 68644, 47286, 14829, 1812, 55, 66, 2772, 29043, 121314, 240021, 240021, 121314, 29043, 2772, 66
Offset: 0

Views

Author

Ji Young Choi, Jan 13 2021

Keywords

Comments

A digit in a string is called indispensable if it is greater than the following digit or equal to the following digits which are eventually greater than the following digit. We also assume that there is an invisible digit 0 at the end of any string. For example, in the string 33102232, the digits 3, 3, 1, 3, and 2 are indispensable (from the left).
T(n,k) is also the number of integers m where the length of base-4 representation of m is n+k and the digit sum of the base-4 representation of 3m is 3(k+1).

Examples

			Triangle begins
   3;
   6,   6;
  10,  28,   10;
  15,  81,   81,   15;
  21, 186,  354,  186,   21;
  28, 371, 1137, 1137,  371,  28;
  36, 672, 3018, 4836, 3018, 672, 36;
  ...
There are 6 4-ary strings (10, 12, 13, 20, 23, 30) of length 2 with 1 indispensable digits and a nonzero leading digit.
There are 6 4-ary strings (11, 21, 22, 31, 32, 33) of length 2 with 2 indispensable digits and a nonzero leading digit.
There are 10 4-ary strings (111, 211, 221, 222, 311, 321, 322, 331, 332, 333) of length 3 with 3 indispensable digits and a nonzero leading digit.
Hence, T(1,0)=6, T(1,1)=6, T(2,2)=10.
		

Crossrefs

Programs

Formula

T(n,k) = A330509(n+1,k+1) - A330509(n,k+1).

Extensions

More terms from Michel Marcus, Jan 19 2021
Showing 1-1 of 1 results.