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.

A384448 Consecutive states of the linear congruential pseudo-random number generator for the INMOS Transputer when started at 1.

Original entry on oeis.org

1, 1664525, 389569705, 2940799637, 158984081, 2862450781, 3211393721, 1851289957, 3934847009, 2184914861, 246739401, 1948736821, 2941245873, 4195587069, 4088025561, 980655621, 2001863745, 657792333, 65284841, 1282409429, 3808694225, 2968195997, 2417331449
Offset: 1

Views

Author

Sean A. Irvine, May 29 2025

Keywords

Comments

Periodic with period 2^30.

Crossrefs

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

Programs

  • Mathematica
    NestList[Mod[1664525*#, 2^32] &, 1, 50] (* Paolo Xausa, May 30 2025 *)

Formula

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