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

A322013 Square array A(n,k), n >= 1, k >= 1, read by antidiagonals, where A(n,k) is the number of permutations of n copies of 1..k introduced in order 1..k with no element equal to another within a distance of 1.

Original entry on oeis.org

1, 1, 0, 1, 1, 0, 1, 5, 1, 0, 1, 36, 29, 1, 0, 1, 329, 1721, 182, 1, 0, 1, 3655, 163386, 94376, 1198, 1, 0, 1, 47844, 22831355, 98371884, 5609649, 8142, 1, 0, 1, 721315, 4420321081, 182502973885, 66218360625, 351574834, 56620, 1, 0
Offset: 1

Views

Author

Seiichi Manyama, Nov 24 2018

Keywords

Examples

			Square array begins:
   1, 1,     1,         1,              1,                    1, ...
   0, 1,     5,        36,            329,                 3655, ...
   0, 1,    29,      1721,         163386,             22831355, ...
   0, 1,   182,     94376,       98371884,         182502973885, ...
   0, 1,  1198,   5609649,    66218360625,     1681287695542855, ...
   0, 1,  8142, 351574834, 47940557125969, 16985819072511102549, ...
		

Crossrefs

Main diagonal gives A321666.

Programs

  • PARI
    q(n,x) = sum(i=1, n, (-1)^(n-i) * binomial(n-1, n-i) * x^i/i!)
    T(n,k) = subst(serlaplace(q(n,x)^k), x, 1)/k! \\ Andrew Howroyd, Feb 03 2024

Formula

T(n,k) = A322093(n,k) / k!. - Andrew Howroyd, Feb 03 2024

A321670 Number of permutations of 10 copies of 1..n introduced in order 1..n with no element equal to another within a distance of 1.

Original entry on oeis.org

1, 0, 1, 20824778, 7279277647839552, 19672658572012343899666292, 293736218147318801678882792470437721, 18739368045280595665934917472507368174737872589, 4204427313459831775866154680419213479057724331798640498651
Offset: 0

Views

Author

Seiichi Manyama, Nov 16 2018

Keywords

Comments

In general, for r > 1, row r of A322013 is asymptotic to r^(r*n + 1/2) * n^((r-1)*n) / ((r!)^n * exp((r-1)*(n+1))). - Vaclav Kotesovec, Nov 24 2018

Crossrefs

Formula

a(n) ~ 2^(2*n + 1/2) * 5^(8*n + 1/2) * n^(9*n) / (567^n * exp(9*(n+1))). - Vaclav Kotesovec, Nov 24 2018

A322145 Number of permutations of 9 copies of 1..n with no element equal to another within a distance of 1.

Original entry on oeis.org

1, 0, 2, 17236524, 2511603532825176, 2829059722872229922701920, 17498057808683351584656839871450000, 459422439054082909311010463927575656038701920, 42176005899746902650961357272521722186133207293858938240
Offset: 0

Views

Author

Seiichi Manyama, Nov 28 2018

Keywords

Crossrefs

Row 9 of A322093.

Formula

a(n) = n! * A321669(n).
a(n) = Integral_{0..infinity} (Sum_{k=1..9} (-1)^(9-k) * binomial(8, 9-k) * x^k/k!)^n * exp(-x) dx.
Showing 1-3 of 3 results.