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.

A384550 Consecutive states of the linear congruential pseudo-random number generator 2824527309*s mod 2^32 when started at s=1.

Original entry on oeis.org

1, 2824527309, 3293550121, 2596709333, 3445756561, 3498707741, 441773881, 3935421861, 1918678561, 1293047149, 465535305, 3869281397, 1895004849, 3994946749, 562125913, 1620691013, 3444240449, 893681933, 2983563369, 1922648341, 2453186257, 3436839517, 458239353
Offset: 1

Views

Author

Sean A. Irvine, Jun 02 2025

Keywords

Comments

Periodic with period 2^30.

Crossrefs

Programs

  • Maple
    a:= proc(n) option remember; `if`(n<2, n,
          irem(2824527309*a(n-1), 2^32))
        end:
    seq(a(n), n=1..23);  # Alois P. Heinz, Jun 02 2025
  • Mathematica
    NestList[Mod[2824527309*#, 2^32] &, 1, 50] (* Paolo Xausa, Jun 09 2025 *)

Formula

a(n) = 2824527309 * a(n-1) mod 2^32.