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.

A384779 Consecutive states of the linear congruential pseudo-random number generator 68909602460261*s mod 2^48 when started at 1.

Original entry on oeis.org

1, 68909602460261, 267986871311321, 40223525715613, 170906480868849, 105934630117909, 220872133340233, 58531276790477, 54428804463841, 144397689558725, 44956117505465, 810057454589, 86145210100945, 204213264588917, 259238501435433, 238216607930925
Offset: 1

Views

Author

Sean A. Irvine, Jun 09 2025

Keywords

Comments

Periodic with period 2^46.

Crossrefs

Programs

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

Formula

a(n) = 68909602460261 * a(n-1) mod 2^48.