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-2 of 2 results.

A347842 a(n) is the number of (strict) chains of subspaces with ends 0 and (F_4)^n.

Original entry on oeis.org

1, 1, 6, 148, 14808, 5942608, 9546508128, 61355108818240, 1577381936031968640, 162213856617581098030336, 66726795842176170072717129216, 109792555585903911536355551233758208, 722612693482570097701467493432061846673408, 19023844570798442009810731239392846416136188284928
Offset: 0

Views

Author

Álvar Ibeas, Sep 15 2021

Keywords

Examples

			a(3) = 148 = 1 * 1 + 21 * 2 + 105 * 1, counting:
the unrefined chain 0 < (F_4)^3;
21 chains 0 < V < (F_4)^3, with dim(V) = 1; another
21 chains 0 < V < (F_4)^3, with dim(V) = 2; and
105 chains 0 < V_1 < V_2 < (F_4)^3.
		

Crossrefs

Column k=4 of A381426.

Programs

  • Maple
    b:= proc(o, u, t) option remember; `if`(u+o=0, 1, `if`(t=1,
          b(u+o, 0$2), 0)+add(4^(u+j-1)*b(o-j, u+j-1, 1), j=1..o))
        end:
    a:= n-> b(n, 0$2):
    seq(a(n), n=0..14);  # Alois P. Heinz, Feb 21 2025

Formula

a(n) = Sum_{L partition of n} A347487(n, L) * A036038(len(L), sig(L)), where sig(L) is the partition composed by the part multiplicities of L.
a(n) = Sum_{k=0..binomial(n,2)} 4^k * A381299(n,k). - Alois P. Heinz, Feb 21 2025

Extensions

a(0)=1 prepended by Alois P. Heinz, Feb 21 2025

A348115 Irregular triangle read by rows: T(n, k) is the number of chains of subspaces 0 < V_1 < ... < V_r = (F_4)^n, counted up to coordinate permutation, with dimension increments given by (any fixed permutation of) the parts of the k-th partition of n in Abramowitz-Stegun order.

Original entry on oeis.org

1, 1, 3, 1, 7, 24, 1, 12, 31, 117, 469, 1, 19, 111, 458, 1435, 6356, 28753, 1, 29, 361, 964, 1579, 15266, 55470, 71660, 264300, 1267174, 6105030, 1, 41, 1068, 8042, 4886, 145628, 494779, 1952843, 705790, 9589197, 38323695, 47157299, 188963325, 932529235
Offset: 1

Views

Author

Álvar Ibeas, Oct 01 2021

Keywords

Comments

A permutation on the list of dimension increments does not modify the number of subspace chains.
The length of the enumerated chains is r = len(L), where L is the parameter partition.

Examples

			For L = (1, 1, 1), there are 105 (= 21 * 5) = A347487(3, 3) subspace chains 0 < V_1 < V_2 < (F_4)^3.
The permutations of the three coordinates classify them into 24 = T(3, 3) orbits.
T(3, 2) = 7 refers to partition (2, 1) and counts subspace chains in (F_4)^2 with dimensions (0, 2, 3), i.e., 2-dimensional subspaces. It also counts chains with dimensions (0, 1, 3), i.e., 1-dimensional subspaces.
Triangle begins:
  k:  1  2   3   4    5    6     7
      ----------------------------
n=1:  1
n=2:  1  3
n=3:  1  7  24
n=4:  1 12  31 117  469
n=5:  1 19 111 458 1435 6356 28753
		

Crossrefs

Formula

If the k-th partition of n in A-St is L = (a, n-a), then T(n, k) = A347971(n, a) = A347971(n, n-a).
Showing 1-2 of 2 results.