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.

A384568 Consecutive states of the linear congruential pseudo-random number generator for the Hewlett Packard HP-11C when started at 1.

Original entry on oeis.org

1, 2592332694, 9081101567, 5395073420, 8055983053, 5086213266, 6273274859, 9159086632, 8802055385, 7839955918, 6661611031, 9575371524, 9742396197, 1322731850, 9762193283, 8428043296, 9881472689, 954880262, 481952815, 5008545148, 9092360061, 879428354
Offset: 1

Views

Author

Sean A. Irvine, Jun 03 2025

Keywords

Comments

Periodic with period 10^10.
Also used by other Hewlett Packard calculators, such as the HP-15C.

Crossrefs

Programs

  • Mathematica
    NestList[Mod[1574352261*# + 1017980433, 10^10] &, 1, 50] (* Paolo Xausa, Jun 05 2025 *)

Formula

a(n) = (1574352261 * a(n-1) + 1017980433) mod 10^10.