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.

A373342 Antidiagonal sums of A373341.

Original entry on oeis.org

1, 3, 11, 257, 10409849, 13140065160047459074769, 21553582667127297807356246702227694881720251470055162138373632739283194220056118692942769
Offset: 1

Views

Author

Stefano Spezia, Jun 01 2024

Keywords

Comments

The next term is too large to be included in Data.

Crossrefs

Cf. A373341.

Programs

  • Mathematica
    A373341[n_,k_]:=(n!)^(n^(k-1)); a[n_]:=Sum[A373341[n-k+1,k],{k,n}]; Array[a,7]

A373343 Array read by ascending antidiagonals: A(n,k) is the number of cyclic de Bruijn sequences of order k and alphabet of size n, with k > 0.

Original entry on oeis.org

1, 1, 1, 2, 1, 1, 6, 24, 2, 1, 24, 20736, 373248, 16, 1, 120, 995328000, 189321481108517289984, 12635683568857645056, 2048, 1
Offset: 1

Views

Author

Stefano Spezia, Jun 01 2024

Keywords

Comments

The 7th antidiagonal is too large to be included in Data.

Examples

			The array begins:
  1,  1,      1,                    1, ...
  1,  1,      2,                   16, ...
  2, 24, 373248, 12635683568857645056, ...
  ...
		

Crossrefs

Cf. A000012 (n=1), A000142 (k=1), A003992, A016031 (n=2), A373341 (acyclic), A373344 (antidiagonal sums).

Programs

  • Mathematica
    A[n_,k_]:=(n!)^(n^(k-1))/n^k; Table[A[n-k+1,k],{n,6},{k,n}]//Flatten

Formula

A(n,k) = (n!)^(n^(k-1))/n^k.
A(n,k) = A373341(n,k)/A003992(n,k).
Showing 1-2 of 2 results.