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.

A384196 Consecutive states of the linear congruential pseudo-random number generator 20403*s mod 2^15 when started at s=1.

Original entry on oeis.org

1, 20403, 30505, 30891, 9361, 20579, 16953, 25819, 6689, 29715, 1609, 27659, 28849, 27331, 21337, 15931, 14401, 25715, 14697, 2923, 209, 4387, 18553, 923, 23137, 8403, 4233, 22219, 21745, 17283, 8601, 13563, 129, 10547, 2985, 20011, 27921, 483, 24249, 21083
Offset: 1

Views

Author

Sean A. Irvine, May 21 2025

Keywords

Comments

Periodic with period 8192 (considerably smaller than the modulus).

References

  • Fred Maryanski, Digital Computer Simulation, Hayden Book Co., 1980 (see p. 224-230).

Crossrefs

Cf. A096550-A096561 (other pseudo-random number generators).

Programs

  • Maple
    a:= proc(n) option remember; `if`(n<2, n,
          irem(20403*a(n-1), 2^15))
        end:
    seq(a(n), n=1..40);  # Alois P. Heinz, May 21 2025
  • Mathematica
    NestList[Mod[20403*#, 2^15] &, 1, 100] (* Paolo Xausa, May 22 2025 *)
  • PARI
    a(n) = lift(Mod(20403,32768)^(n-1)) \\ Jianing Song, Jul 06 2025

Formula

a(n) = 20403 * a(n-1) mod 2^15.