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.

A004204 Number of permutations of length n with spread 0.

Original entry on oeis.org

1, 1, 0, 4, 20, 144, 630, 5696, 39366, 366400, 3634950, 39066624, 479163828, 6226534272, 87238701000, 1315130458112, 20922813624336, 355586138666496, 6402373841107998, 121479626301440000
Offset: 1

Views

Author

Keywords

Comments

The spread of a permutation p is the sum of i*p(i) over 0 <= i < n, reduced modulo n. - Rintaro Matsuo, Nov 26 2022

References

  • N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).

Crossrefs

Column k=0 of A147679.

Programs

  • PARI
    a(n) = my(v=[1..n], nb=0); forperm(v, p, if (sum(i=1, n-1, Mod(i,n)*p[i]) == 0, nb++)); nb; \\ Michel Marcus, Nov 30 2022

Extensions

More terms from Herman Jamke (hermanjamke(AT)fastmail.fm), May 17 2007