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.

Previous Showing 21-30 of 38 results. Next

A300560 Deep factorization of n, written in binary: replace each factor p^e with the expression [primepi(p) [ e ]], iterate on these numbers, finally replace '[' and ']' with '1' and '0'.

Original entry on oeis.org

0, 1100, 11100100, 11110000, 111100100100, 110011100100, 111110000100, 111110010000, 111001110000, 1100111100100100, 1111100100100100, 1111000011100100, 1110011100100100, 1100111110000100, 11100100111100100100, 111111000000, 1111110000100100, 1100111001110000, 1111110010000100
Offset: 1

Views

Author

M. F. Hasler, Mar 08 2018

Keywords

Comments

Consider the prime factorization of n, replace each factor prime(i)^e_i with the parenthesized expression [i [e_i]], iterate this process on the indices i and exponents e_i, and finally replace '[' and ']' with digits '1' and '0'.
See A300561 for the decimal representation of these binary numbers.
There is redundancy: trailing '0's can be removed without loss of information; then each term ends in a digit 1 which can also be removed. This more condensed version is given in A300562, the decimal representation in A300563(n) = (m/2^valuation(m,2) - 1)/2 with m = a(n) [read in binary] = A300561(n).
The initial a(1) = 0 represents the empty string of binary digits.

Examples

			The first term a(1) = 0 represents, by convention, the empty factorization of the number 1.
2 = prime(1)^1 => (1(1)) => (()) => 1100 = a(2). (The 1's disappear, having empty factorization.)
3 = prime(2)^1 => (2(1)) => ((())()) [using 2 => (())] => 11100100 = a(3).
4 = prime(1)^2 => (1(2)) => (((()))) => 11110000 = a(4).
5 = prime(3)^1 => (3(1)) => (((())())()) => 111100100100 = a(5).
6 = prime(1)^1*prime(2)^1 => (1(1))(2(1)) => (())((())()) => 110011100100 = a(6) (= concatenation of a(2) and a(3), since 6 = 2*3.)
7 = prime(4)^1 => (4(1)) => ((((())))()) => 111110000100 = a(7).
8 = prime(1)^3 => (1(3)) => ((((())()))) => 111110010000 = a(8), and so on.
To convert back to the usual factorization, replace 0 and 1 by ')' and '(', then iteratively replace any (x(y)) by prime_x^y, where an empty x or y means 1.
Examples: 1100 = (()) = (x(y)) with x = y = 1, so (()) = prime_1^1 = 2.
110011100100 = _(())_(_(())_()) = 2 (2()) = 2 prime_2^1 = 6.
111110010000 = (((_(())_()))) = ((_(2())_)) = ((3)) = prime_1^3 = 8.
		

Crossrefs

Programs

  • PARI
    A300560(n)=(n=factor(n))||return("");n[,1]=apply(primepi,n[,1]);concat(apply(t->Str("1"t[1]"1"t[2]"00"),Col(apply(A300560,n))~))

A300561 Deep factorization of n, A300560, converted from binary to decimal. (Binary digits obtained by recursively replacing each factor p^e with [primepi(p) [e]], then '[' = 1, ']' = 0.)

Original entry on oeis.org

0, 12, 228, 240, 3876, 3300, 3972, 3984, 3696, 53028, 63780, 61668, 59172, 53124, 937764, 4032, 64548, 52848, 64644, 986916, 937860, 850212, 62340, 1020132, 62064, 845604, 59280, 987012, 948516, 13520676, 1034532, 64656, 15005988, 850980, 15880068, 986736, 1017636
Offset: 1

Views

Author

M. F. Hasler, Mar 08 2018

Keywords

Comments

Convert to decimal the binary numbers A300560, which represent the deep factorization of n: each factor prime(i)^e_i is replaced by the expression [i [e_i]], recursively for indices i and exponents e_i, and finally '[' and ']' are considered as binary digits 1 and 0.
The initial a(1) = 0 represents the empty string of binary digits.
All terms are multiples of 4, and some of a higher power of 2, which represent the trailing closing parentheses of the deep factorization. These factors of 2 can be removed without loss of information; then all terms (except for n = 1) are odd, and we can consider (x-1)/2. This more condensed version is A300563(n) = (a(n)/2^valuation(a(n),2) - 1)/2, with binary representation given in A300562(n).

Examples

			The first term a(1) = 0 represents, by convention, the empty factorization of the number 1.
2 = prime(1)^1 => (1(1)) => (()) => 1100_2 = 12 = a(2).
3 = prime(2)^1 => (2(1)) => ((())()) => 11100100_2 = 228 = a(3).
4 = prime(1)^2 => (1(2)) => (((()))) => 11110000_2 = 240 = a(4).
5 = prime(3)^1 => (3(1)) => (((())())()) => 111100100100_2 = 3876 = a(5).
6 = prime(1)^1*prime(2)^1 => (1(1))(2(1)) => (())((())()) => 110011100100_2 = 3300 = a(6).
7 = prime(4)^1 => (4(1)) => ((((())))()) => 111110000100_2 = 3972 = a(7).
8 = prime(1)^3 => (1(3)) => ((((())()))) => 111110010000_2 = 3984 = a(8), and so on.
		

Crossrefs

Programs

A300562 Condensed deep factorization of n, in binary. (Remove all trailing 0's and one trailing 1 from A300560.)

Original entry on oeis.org

0, 1, 11100, 111, 111100100, 110011100, 111110000, 1111100, 1110011, 1100111100100, 1111100100100, 1111000011100, 1110011100100, 1100111110000, 11100100111100100, 11111, 1111110000100, 11001110011, 1111110010000, 11110000111100100
Offset: 1

Views

Author

M. F. Hasler, Mar 08 2018

Keywords

Comments

The binary representation of the deep factorization of n, A300560, is obtained by recursively replacing any factor prime(i)^e_i by the expression [i [e_i]], and finally taking '[' and ']' as binary digits 1 and 0.
This always ends in trailing 0's which can be safely removed without loss of information; then there is a final binary digit 1 that can also be dropped. The result is a(n), in binary, equal to A300563(n) when converted to decimal.
The initial a(1) = 0 results from the empty factorization of 1.
To reconstruct the deep factorization of n > 1, append a digit 1 and then as many 0's (namely: A145037(a(n))+1) as to have the same number of as 1's.

Examples

			The first term a(1) = 0 represents, by convention, the empty factorization of the number 1.
To reconstruct the full deep factorization A300560(n), append a digit 1 and then as many 0's as to balance the number of 1's:
a(2) = 1, append a 1 => 11; append two 0's => 1100 = A300560(2).
a(3) = 11100, append a 1 => 111001; append two 0's => 11100100 = A300560(3).
a(4) = 111, append a 1 => 1111; append four 0's => 11110000 = A300560(4).
		

Crossrefs

Programs

Formula

a(n) = A007088(A300563(n)), see there for an expression in terms of A300560. - M. F. Hasler, Mar 16 2018

A300563 Condensed deep factorization of n, A300562(n) written in decimal: floor of odd part of A300561(n) divided by 2.

Original entry on oeis.org

0, 1, 28, 7, 484, 412, 496, 124, 115, 6628, 7972, 7708, 7396, 6640, 117220, 31, 8068, 1651, 8080, 123364, 117232, 106276, 7792, 127516, 1939, 105700, 1852, 123376, 118564, 1690084, 129316, 2020, 1875748, 106372, 1985008, 30835, 127204, 106384, 1875172, 2040292, 124708
Offset: 1

Views

Author

M. F. Hasler, Mar 08 2018

Keywords

Comments

The binary representation of the deep factorization of n, A300560, is obtained by recursively replacing any factor prime(i)^e_i by the expression [i [e_i]], and finally taking '[' and ']' as binary digits 1 and 0.
This always ends in trailing 0's which can be safely removed without loss of information; then there is a final binary digit 1 that can also be dropped. The result is A300562(n) in binary, equal to a(n) when converted to decimal.
The initial a(1) = 0 results from the empty factorization of 1.
To reconstruct the deep factorization of n > 1, take a(n)*2+1, multiply by 2^A145037(a(n)*2+1) (i.e., number of bits = 1 minus number of bits = 0), and write it in binary.

Examples

			The first term a(1) = 0 represents, by convention, the empty factorization of the number 1.
The binary-coded deep factorization is restored as follows (and a(n) calculated from this going the opposite direction):
a(2) = 1, append a bit 1 or do 1 X 2 + 1 = 3 = 11[2]. This has 2 bits 1, no bit 0 so append 2 bits 0 => A300560(2) = 1100 in binary, or 12 = A300561(2) in decimal.
a(3) = 28 = 11100[2], append a bit 1 or do 28 X 2 + 1 = 57 = 111001[2]. This has 4 bits 1 and 2 bits 0, so append two more of the latter => A300560(3) = 11100100 in binary or A300561(3) = 228 in decimal.
a(4) = 7 = 111[2], append a bit 1 or do 7 X 2 + 1 = 15 = 1111[2]. This has 4 bits 1 and no bit 0 so append 4 0's => 11110000 = A300560(4) or A300561(4) = 240 in decimal.
See A300560 for conversion of this binary coding of the deep factorization into the ordinary factorization.
		

Crossrefs

Programs

Formula

a(n) = A004526(A000265(A300561(n))), where A004526 = floor(./2) and A000265(x) = x/2^A007814(x) is the odd part of x, A007814 is 2-adic valuation. - M. F. Hasler, Mar 16 2018

A111797 Triangle T(g, w) = number of rotes of weight g and wayage w.

Original entry on oeis.org

1, 1, 2, 5, 1, 16, 4, 56, 17
Offset: 1

Views

Author

Jon Awbrey, Sep 01 2005

Keywords

Comments

T(g, w) = |{positive integers m : A062537(m) = g and A001221(m) = w}|.
Row sums = A061396. See A111796 for definitions and further details.

Examples

			Table T(g, w), omitting zeros, begins as follows:
g\w| 0 ` 1 ` 2 ` 3 ` 4 ` 5
---+-----------------------
`0 | 1
`1 | ` ` 1
`2 | ` ` 2
`3 | ` ` 5 ` 1
`4 | ` `16 ` 4
`5 | ` `56 `17
		

Crossrefs

A111798 Positive integers sorted by rote height (A109301) and omega (A001221).

Original entry on oeis.org

1, 2, 3, 4, 9, 6, 12, 18, 36, 5, 7, 8, 13, 16, 23, 25, 27, 37, 49, 61, 64, 81, 125, 151, 169, 343, 512, 529, 625, 729, 1369, 2197, 2401, 3721, 4096, 12167, 15625, 19683, 22801, 28561, 50653, 117649, 226981, 262144, 279841, 531441, 1874161, 1953125, 3442951
Offset: 1

Views

Author

Jon Awbrey, Sep 01 2005 - Sep 10 2005

Keywords

Comments

Positive integers m sorted by h(m) = A109301(m) and w(m) = A001221(m).
Defining the "wayage" of a rooted tree to be its root degree, the rote corresponding to the positive integer m has a wayage of w(m) = omega(m) = A001221(m).

Examples

			Table of Primal Functions, Codes, Sort Parameters and Subtotals
Primal Function | ` ` ` ` ` Primal Code ` ` = ` ` a | h w | s | t
----------------+-----------------------------------+-----+---+---
{ } ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` 1 | 0 0 | 1 | 1
----------------+-----------------------------------+-----+---+---
1:1 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` 2 | 1 1 | 1 | 1
----------------+-----------------------------------+-----+---+---
2:1 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` 3 | 2 1 | ` |
1:2 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` 4 | 2 1 | ` |
2:2 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` 9 | 2 1 | 3 |
----------------+-----------------------------------+-----+---+---
1:1 2:1 ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` 6 | 2 2 | ` |
1:2 2:1 ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` `12 | 2 2 | ` |
1:1 2:2 ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` `18 | 2 2 | ` |
1:2 2:2 ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` `36 | 2 2 | 4 | 7
----------------+-----------------------------------+-----+---+---
` ` ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` | ` ` | ` |
1:3 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` 8 | 3 1 | ` |
1:4 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` `16 | 3 1 | ` |
1:6 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` `64 | 3 1 | ` |
1:9 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` 512 | 3 1 | ` |
1:12` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` ` ` `4096 | 3 1 | ` |
1:18` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` ` `262144 | 3 1 | ` |
1:36` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` 68719476736 | 3 1 | ` |
` ` ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` | ` ` | ` |
2:3 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` `27 | 3 1 | ` |
2:4 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` `81 | 3 1 | ` |
2:6 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` 729 | 3 1 | ` |
2:9 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` ` ` 19683 | 3 1 | ` |
2:12` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` ` `531441 | 3 1 | ` |
2:18` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` 387420489 | 3 1 | ` |
2:36` ` ` ` ` ` | ` ` ` ` ` ` ` `150094635296999121 | 3 1 | ` |
` ` ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` | ` ` | ` |
3:1 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` 5 | 3 1 | ` |
4:1 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` 7 | 3 1 | ` |
6:1 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` `13 | 3 1 | ` |
9:1 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` `23 | 3 1 | ` |
12:1` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` `37 | 3 1 | ` |
18:1` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` `61 | 3 1 | ` |
36:1` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` 151 | 3 1 | ` |
` ` ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` | ` ` | ` |
3:2 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` `25 | 3 1 | ` |
4:2 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` `49 | 3 1 | ` |
6:2 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` 169 | 3 1 | ` |
9:2 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` 529 | 3 1 | ` |
12:2` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` ` ` `1369 | 3 1 | ` |
18:2` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` ` ` `3721 | 3 1 | ` |
36:2` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` ` ` 22801 | 3 1 | ` |
` ` ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` | ` ` | ` |
3:3 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` 125 | 3 1 | ` |
3:4 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` 625 | 3 1 | ` |
3:6 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` ` ` 15625 | 3 1 | ` |
3:9 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` ` 1953125 | 3 1 | ` |
3:12` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` 244140625 | 3 1 | ` |
3:18` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` 3814697265625 | 3 1 | ` |
3:36` ` ` ` ` ` | ` ` ` `14551915228366851806640625 | 3 1 | ` |
` ` ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` | ` ` | ` |
4:3 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` 343 | 3 1 | ` |
4:4 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` ` ` `2401 | 3 1 | ` |
4:6 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` ` `117649 | 3 1 | ` |
4:9 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` `40353607 | 3 1 | ` |
4:12` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` 13841287201 | 3 1 | ` |
4:18` ` ` ` ` ` | ` ` ` ` ` ` ` ` `1628413597910449 | 3 1 | ` |
4:36` ` ` ` ` ` | ` 2651730845859653471779023381601 | 3 1 | ` |
` ` ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` | ` ` | ` |
6:3 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` ` ` `2197 | 3 1 | ` |
6:4 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` ` ` 28561 | 3 1 | ` |
6:6 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` ` 4826809 | 3 1 | ` |
6:9 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` 10604499373 | 3 1 | ` |
6:12` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` `23298085122481 | 3 1 | ` |
6:18` ` ` ` ` ` | ` ` ` ` ` ` 112455406951957393129 | 3 1 | ` |
6:36` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` ` ` 13^36 | 3 1 | ` |
` ` ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` | ` ` | ` |
9:3 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` ` ` 12167 | 3 1 | ` |
9:4 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` ` `279841 | 3 1 | ` |
9:6 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` 148035889 | 3 1 | ` |
9:9 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` 1801152661463 | 3 1 | ` |
9:12` ` ` ` ` ` | ` ` ` ` ` ` ` ` 21914624432020321 | 3 1 | ` |
9:18` ` ` ` ` ` | ` ` ` ` 3244150909895248285300369 | 3 1 | ` |
9:36` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` ` ` 23^36 | 3 1 | ` |
` ` ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` | ` ` | ` |
12:3` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` ` ` 50653 | 3 1 | ` |
12:4` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` ` 1874161 | 3 1 | ` |
12:6` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` `2565726409 | 3 1 | ` |
12:9` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` 129961739795077 | 3 1 | ` |
12:12 ` ` ` ` ` | ` ` ` ` ` ` ` 6582952005840035281 | 3 1 | ` |
12:18 ` ` ` ` ` | ` ` 16890053810563300749953435929 | 3 1 | ` |
12:36 ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` ` ` 37^36 | 3 1 | ` |
` ` ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` | ` ` | ` |
18:3` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` ` `226981 | 3 1 | ` |
18:4` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` `13845841 | 3 1 | ` |
18:6` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` 51520374361 | 3 1 | ` |
18:9` ` ` ` ` ` | ` ` ` ` ` ` ` ` 11694146092834141 | 3 1 | ` |
18:12 ` ` ` ` ` | ` ` ` ` ` `2654348974297586158321 | 3 1 | ` |
18:18 ` ` ` ` ` | 136753052840548005895349735207881 | 3 1 | ` |
18:36 ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` ` ` 61^36 | 3 1 | ` |
` ` ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` | ` ` | ` |
36:3` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` ` 3442951 | 3 1 | ` |
36:4` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` 519885601 | 3 1 | ` |
36:6` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` `11853911588401 | 3 1 | ` |
36:9` ` ` ` ` ` | ` ` ` ` ` ` `40812436757196811351 | 3 1 | ` |
36:12 ` ` ` ` ` | ` ` ` 140515219945627518837736801 | 3 1 | ` |
36:18 ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` ` `151^18 | 3 1 | ` |
36:36 ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` ` `151^36 | 3 1 |77 |
----------------+-----------------------------------+-----+---+---
The last part is left unsorted to show the method of construction.
a (when sorted ) = this sequence
h = rote height in gammas = A109301
w = rote wayage in gammas = A001221
s = count in (h, w) class = A111799
t = count in height class = A109300
		

Crossrefs

A113197 Positive integers sorted by rote weight, rote height and rote quench.

Original entry on oeis.org

1, 2, 3, 4, 6, 9, 5, 7, 8, 16, 12, 18, 10, 14, 13, 23, 25, 27, 49, 64, 81, 512, 11, 17, 19, 32, 53, 128, 256, 65536, 36, 26, 46, 50, 54, 98, 125, 162, 2401, 15, 21, 37, 61, 169, 343, 529, 625, 729, 4096, 19683, 262144, 20, 24, 28, 48, 22, 34, 38, 106, 29, 41, 43, 83, 97
Offset: 1

Views

Author

Jon Awbrey, Oct 18 2005

Keywords

Comments

For positive integer m, the rote weight in gammas is g(m) = A062537(m), the rote height in gammas is h(m) = A109301(m) and the rote quench or primal code characteristic is q(m) = A108352(m).

Examples

			Primal Functions, Primal Codes, Sort Parameters and Subtotals
================================================================
Primal Function | ` ` ` Primal Code ` = ` a | g h q | r | s | t
================================================================
{ } ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` 1 | 0 0 1 | 1 | 1 | 1
================================================================
1:1 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` 2 | 1 1 0 | 1 | 1 | 1
================================================================
2:1 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` 3 | 2 2 2 | ` | ` |
1:2 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` 4 | 2 2 2 | 2 | 2 | 2
================================================================
1:1 2:1 ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` 6 | 3 2 0 | ` | ` |
2:2 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` 9 | 3 2 0 | 2 | 2 |
----------------+---------------------------+-------+---+---+---
3:1 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` 5 | 3 3 2 | ` | ` |
4:1 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` 7 | 3 3 2 | ` | ` |
1:3 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` 8 | 3 3 2 | ` | ` |
1:4 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` `16 | 3 3 2 | 4 | 4 | 6
================================================================
1:2 2:1 ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` `12 | 4 2 0 | ` | ` |
1:1 2:2 ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` `18 | 4 2 0 | 2 | 2 |
----------------+---------------------------+-------+---+---+---
1:1 3:1 ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` `10 | 4 3 0 | ` | ` |
1:1 4:1 ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` `14 | 4 3 0 | 2 | ` |
----------------+---------------------------+-------+---+---+---
6:1 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` `13 | 4 3 2 | ` | ` |
9:1 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` `23 | 4 3 2 | ` | ` |
3:2 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` `25 | 4 3 2 | ` | ` |
2:3 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` `27 | 4 3 2 | ` | ` |
4:2 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` `49 | 4 3 2 | ` | ` |
1:6 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` `64 | 4 3 2 | ` | ` |
2:4 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` `81 | 4 3 2 | ` | ` |
1:9 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` 512 | 4 3 2 | 8 |10 |
----------------+---------------------------+-------+---+---+---
5:1 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` `11 | 4 4 2 | ` | ` |
7:1 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` `17 | 4 4 2 | ` | ` |
8:1 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` `19 | 4 4 2 | ` | ` |
1:5 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` `32 | 4 4 2 | ` | ` |
16:1` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` `53 | 4 4 2 | ` | ` |
1:7 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` 128 | 4 4 2 | ` | ` |
1:8 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` 256 | 4 4 2 | ` | ` |
1:16` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` 65536 | 4 4 2 | 8 | 8 |20
================================================================
a = this sequence
g = rote weight in gammas = A062537
h = rote height in gammas = A109301
q = primal code character = A108352
r = number in (g,h,q) set = A113198
s = count in (g, h) class = A111793
t = count in weight class = A061396
		

Crossrefs

A113198 Tetrahedron T(g, h, q) = number of rotes of weight g, height h, quench q.

Original entry on oeis.org

1, 1, 2, 2, 4, 2, 2, 8, 8, 1, 8, 12, 4, 4, 28, 16
Offset: 1

Views

Author

Jon Awbrey, Oct 18 2005

Keywords

Comments

T(g, h, q) = |{m : A062537(m) = g, A109301(m) = h, A108352(m) = q}|.
This is the column that is labeled "r" in the tabulation of A113197.

Examples

			Table T(g, h, q), omitting empty cells, starts out as follows:
--------+------------------------------------------------------------
g\(h,q) | (0,1) ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` `
` ` ` ` | ` ` ` (1,0) ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` `
` ` ` ` | ` ` ` ` ` ` (2,0) (2,2) ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` `
` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` (3,0) (3,2) (3,3) ` ` ` ` ` ` ` ` `
` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` (4,0) (4,2) ` ` `
` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` (5,2)
========+============================================================
0 ` ` ` | ` 1 ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` `
--------+------------------------------------------------------------
1 ` ` ` | ` ` ` ` 1 ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` `
--------+------------------------------------------------------------
2 ` ` ` | ` ` ` ` ` ` ` ` ` ` 2 ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` `
--------+------------------------------------------------------------
3 ` ` ` | ` ` ` ` ` ` ` 2 ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` `
3 ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` 4 ` ` ` ` ` ` ` ` ` ` ` ` `
--------+------------------------------------------------------------
4 ` ` ` | ` ` ` ` ` ` ` 2 ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` `
4 ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` ` 2 ` ` 8 ` ` ` ` ` ` ` ` ` ` ` ` `
4 ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` 8 ` ` ` `
--------+------------------------------------------------------------
5 ` ` ` | ` ` ` ` ` ` ` 1 ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` `
5 ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` ` 8 ` `12 ` ` 4 ` ` ` ` ` ` ` ` ` `
5 ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` 4 ` `28 ` ` ` `
5 ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` `16 `
--------+------------------------------------------------------------
Row sums = A111793. Horizontal section sums = A061396.
		

Crossrefs

A111794 Integers whose rote weight and rote height are equal, sorted by the equated value.

Original entry on oeis.org

1, 2, 3, 4, 5, 7, 8, 16, 11, 17, 19, 32, 53, 128, 256, 65536, 31, 59, 67, 131, 241, 719, 1619, 2048, 131072, 524288, 821641, 4294967296, 9007199254740992
Offset: 1

Views

Author

Jon Awbrey, Aug 28 2005

Keywords

Comments

The number of integers m whose rote weight, g(m) = A062537(m) and rote height, h(m) = A109301(m), are both equal to j is 2^(j-1) for j > 0 and 1 for j = 0, as enumerated by the main diagonal of the array shown with sequence A111793.

Examples

			Triangle whose j^th row lists the integers m with g(m) = h(m) = j
j | m such that g(m) = h(m) = j
--+-------------------------------------------------------
0 | 1
1 | 2
2 | 3 4
3 | 5 7 8 16
4 | 11 17 19 32 53 128 256 65536
5 | 31 59 67 131 241 719 1619 2048 131072 524288 821641
` | 4294967296 9007199254740992 2^128 2^256 2^65536
		

Crossrefs

A112480 Positive integers sorted by rote weight, rote wagage and rote height.

Original entry on oeis.org

1, 2, 3, 4, 9, 5, 7, 8, 16, 6, 13, 23, 25, 27, 49, 64, 81, 512, 11, 17, 19, 32, 53, 128, 256, 65536, 12, 18, 10, 14, 37, 61, 125, 169, 343, 529, 625, 729, 2401, 4096, 19683, 262144, 29, 41, 43, 83, 97, 103, 121, 227, 243, 289, 311, 361, 419, 1024, 2187, 2809, 3671
Offset: 1

Views

Author

Jon Awbrey, Sep 27 2005

Keywords

Comments

For positive integer m, the rote weight in gammas is g(m) = A062537(m), the rote wayage or root degree is w(m) = omega(m) = A001221(m) and the rote height in gammas is h(m) = A109301(m).

Examples

			Table of Primal Functions, Codes, Sort Parameters and Subtotals
================================================================
Primal Function | ` ` ` Primal Code ` = ` a | g w h | r | s | t
================================================================
{ } ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` 1 | 0 0 0 | 1 | 1 | 1
================================================================
1:1 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` 2 | 1 1 1 | 1 | 1 | 1
================================================================
2:1 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` 3 | 2 1 2 | ` | ` |
1:2 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` 4 | 2 1 2 | 2 | 2 | 2
================================================================
2:2 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` 9 | 3 1 2 | 1 | ` |
----------------+---------------------------+-------+---+---+---
3:1 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` 5 | 3 1 3 | ` | ` |
4:1 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` 7 | 3 1 3 | ` | ` |
1:3 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` 8 | 3 1 3 | ` | ` |
1:4 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` `16 | 3 1 3 | 4 | 5 |
----------------+---------------------------+-------+---+---+---
1:1 2:1 ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` 6 | 3 2 2 | 1 | 1 | 6
================================================================
6:1 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` `13 | 4 1 3 | ` | ` |
9:1 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` `23 | 4 1 3 | ` | ` |
3:2 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` `25 | 4 1 3 | ` | ` |
2:3 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` `27 | 4 1 3 | ` | ` |
4:2 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` `49 | 4 1 3 | ` | ` |
1:6 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` `64 | 4 1 3 | ` | ` |
2:4 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` `81 | 4 1 3 | ` | ` |
1:9 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` 512 | 4 1 3 | 8 | ` |
----------------+---------------------------+-------+---+---+---
5:1 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` `11 | 4 1 4 | ` | ` |
7:1 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` `17 | 4 1 4 | ` | ` |
8:1 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` `19 | 4 1 4 | ` | ` |
1:5 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` `32 | 4 1 4 | ` | ` |
16:1` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` `53 | 4 1 4 | ` | ` |
1:7 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` 128 | 4 1 4 | ` | ` |
1:8 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` 256 | 4 1 4 | ` | ` |
1:16` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` 65536 | 4 1 4 | 8 |16 |
----------------+---------------------------+-------+---+---+---
1:2 2:1 ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` `12 | 4 2 2 | ` | ` |
1:1 2:2 ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` `18 | 4 2 2 | 2 | ` |
----------------+---------------------------+-------+---+---+---
1:1 3:1 ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` `10 | 4 2 3 | ` | ` |
1:1 4:1 ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` `14 | 4 2 3 | 2 | 4 |20
================================================================
12:1` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` `37 | 5 1 3 | ` | ` |
18:1` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` `61 | 5 1 3 | ` | ` |
3:3 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` 125 | 5 1 3 | ` | ` |
6:2 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` 169 | 5 1 3 | ` | ` |
4:3 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` 343 | 5 1 3 | ` | ` |
9:2 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` 529 | 5 1 3 | ` | ` |
3:4 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` 625 | 5 1 3 | ` | ` |
2:6 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` 729 | 5 1 3 | ` | ` |
4:4 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` `2401 | 5 1 3 | ` | ` |
1:12` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` `4096 | 5 1 3 | ` | ` |
2:9 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` 19683 | 5 1 3 | ` | ` |
1:18` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` `262144 | 5 1 3 |12 | ` |
----------------+---------------------------+-------+---+---+---
10:1` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` `29 | 5 1 4 | ` | ` |
13:1` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` `41 | 5 1 4 | ` | ` |
14:1` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` `43 | 5 1 4 | ` | ` |
23:1` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` `83 | 5 1 4 | ` | ` |
25:1` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` `97 | 5 1 4 | ` | ` |
27:1` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` 103 | 5 1 4 | ` | ` |
5:2 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` 121 | 5 1 4 | ` | ` |
49:1` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` 227 | 5 1 4 | ` | ` |
2:5 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` 243 | 5 1 4 | ` | ` |
7:2 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` 289 | 5 1 4 | ` | ` |
64:1` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` 311 | 5 1 4 | ` | ` |
8:2 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` 361 | 5 1 4 | ` | ` |
81:1` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` 419 | 5 1 4 | ` | ` |
1:10` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` `1024 | 5 1 4 | ` | ` |
2:7 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` `2187 | 5 1 4 | ` | ` |
16:2` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` `2809 | 5 1 4 | ` | ` |
512:1 ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` `3671 | 5 1 4 | ` | ` |
2:8 ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` `6561 | 5 1 4 | ` | ` |
1:13` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` `8192 | 5 1 4 | ` | ` |
1:14` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` 16384 | 5 1 4 | ` | ` |
1:23` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` 8388608 | 5 1 4 | ` | ` |
1:25` ` ` ` ` ` | ` ` ` ` ` ` ` ` `33554432 | 5 1 4 | ` | ` |
2:16` ` ` ` ` ` | ` ` ` ` ` ` ` ` `43046721 | 5 1 4 | ` | ` |
1:27` ` ` ` ` ` | ` ` ` ` ` ` ` ` 134217728 | 5 1 4 | ` | ` |
1:49` ` ` ` ` ` | ` ` ` ` ` 562949953421312 | 5 1 4 | ` | ` |
1:64` ` ` ` ` ` | ` ` `18446744073709551616 | 5 1 4 | ` | ` |
1:81` ` ` ` ` ` | 2417851639229258349412352 | 5 1 4 | ` | ` |
1:512 ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` 2^512 | 5 1 4 |28 | ` |
----------------+---------------------------+-------+---+---+---
11:1` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` `31 | 5 1 5 | ` | ` |
17:1` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` `59 | 5 1 5 | ` | ` |
19:1` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` `67 | 5 1 5 | ` | ` |
32:1` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` 131 | 5 1 5 | ` | ` |
53:1` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` 241 | 5 1 5 | ` | ` |
128:1 ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` 719 | 5 1 5 | ` | ` |
256:1 ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` `1619 | 5 1 5 | ` | ` |
1:11` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` `2048 | 5 1 5 | ` | ` |
1:17` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` `131072 | 5 1 5 | ` | ` |
1:19` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` `524288 | 5 1 5 | ` | ` |
65536:1 ` ` ` ` | ` ` ` ` ` ` ` ` ` `821641 | 5 1 5 | ` | ` |
1:32` ` ` ` ` ` | ` ` ` ` ` ` ` `4294967296 | 5 1 5 | ` | ` |
1:53` ` ` ` ` ` | ` ` ` ` `9007199254740992 | 5 1 5 | ` | ` |
1:128 ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` 2^128 | 5 1 5 | ` | ` |
1:256 ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` 2^256 | 5 1 5 | ` | ` |
1:65536 ` ` ` ` | ` ` ` ` ` ` ` ` ` 2^65536 | 5 1 5 |16 |56 |
----------------+---------------------------+-------+---+---+---
1:2 2:2 ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` `36 | 5 2 2 | 1 | ` |
----------------+---------------------------+-------+---+---+---
2:1 3:1 ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` `15 | 5 2 3 | ` | ` |
1:2 3:1 ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` `20 | 5 2 3 | ` | ` |
2:1 4:1 ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` `21 | 5 2 3 | ` | ` |
1:3 2:1 ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` `24 | 5 2 3 | ` | ` |
1:1 6:1 ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` `26 | 5 2 3 | ` | ` |
1:2 4:1 ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` `28 | 5 2 3 | ` | ` |
1:1 9:1 ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` `46 | 5 2 3 | ` | ` |
1:4 2:1 ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` `48 | 5 2 3 | ` | ` |
1:1 3:2 ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` `50 | 5 2 3 | ` | ` |
1:1 2:3 ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` `54 | 5 2 3 | ` | ` |
1:1 4:2 ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` `98 | 5 2 3 | ` | ` |
1:1 2:4 ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` 162 | 5 2 3 |12 | ` |
----------------+---------------------------+-------+---+---+---
1:1 5:1 ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` `22 | 5 2 4 | ` | ` |
1:1 7:1 ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` `34 | 5 2 4 | ` | ` |
1:1 8:1 ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` `38 | 5 2 4 | ` | ` |
1:1 16:1` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` 106 | 5 2 4 | 4 |17 |73
================================================================
a = this sequence
g = rote weight in gammas = A062537
w = rote wayage in gammas = A001221
h = rote height in gammas = A109301
r = number in (g,h,w) set = A112481
s = count in (g, w) class = A111797
t = count in weight class = A061396
		

Crossrefs

Previous Showing 21-30 of 38 results. Next