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.

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

Original entry on oeis.org

1, 3934873077, 752172153, 4289699021, 1201860913, 3042060517, 642808873, 1475608637, 1396788065, 1898146005, 188505305, 2609346733, 30916241, 1732351429, 3930590857, 2785211933, 1131674305, 3946192821, 3744186681, 1503422605, 1298444273, 1019180709, 4250445033
Offset: 1

Views

Author

Sean A. Irvine, Jun 02 2025

Keywords

Comments

Periodic with period 2^30.

Crossrefs

Programs

  • Mathematica
    NestList[Mod[3934873077*#, 2^32] &, 1, 50] (* Paolo Xausa, Jun 05 2025 *)

Formula

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