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

A272649 Compressed discriminator of the factorial numbers.

Original entry on oeis.org

1, 2, 3, 7, 10, 13, 31, 37, 61, 83, 127, 179, 193, 277, 383, 479, 541, 641, 877, 1013, 1423, 2251, 2339, 2557, 2663, 3083, 3301, 5693, 6229, 9091, 9377, 17107, 25447, 31193, 39233, 40879, 46309, 61471, 72089, 81707, 86111, 91243, 116329, 136207, 149459, 163729
Offset: 1

Views

Author

N. J. A. Sloane, May 10 2016

Keywords

Comments

The discriminator of the factorials is A208494 (replacing a(1) with 1), and the compressed discriminator is defined by reducing blocks of equal/repeated terms to a single instance. Because the discriminator is a monotonically increasing sequence, the compressed discriminator is just the records transform of the discriminator. - R. J. Mathar, May 11 2016

References

  • Olivier Gérard, Posting to Sequence Fans Mailing List, May 08 2016.

Crossrefs

Programs

  • Mathematica
    R[n_, i_] := Union[Table[Mod[k!, i], {k, 1, n}]];
    Reap[i0 = 1; Print[1]; Sow[1]; Do[Do[If[Length[R[n, i]] == n, If[i != i0, Print[i]; Sow[i]; i0 = i]; Goto[aa]], {i, 2, Max[n^2, 2]}]; Label[aa]; Continue, {n, 1, 10^4}] ][[2, 1]] (* Jean-François Alcover, Sep 14 2018, after Zhi-Wei Sun in A208494 *)

Extensions

a(32)-a(46) from Alois P. Heinz, May 11 2016
Previous Showing 11-11 of 11 results.