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.

A384863 Consecutive states of the linear congruential pseudo-random number generator G05CAF when started at s=1.

Original entry on oeis.org

1, 302875106592253, 458357793578900489, 130117127544889829, 214028503895537745, 129723886062288141, 506561892515206873, 27366493393768821, 104092279467936161, 249472354291378461, 22695394996597417, 331563264261234181, 550296776567063537, 359770781871757869
Offset: 1

Views

Author

Sean A. Irvine, Jun 10 2025

Keywords

Comments

Periodic with period 2^57.
This is the generator used by the G05CAF routine in the Fortran NAG library.

Crossrefs

Cf. A384217, A384387 (other Fortran pseudo-random number generators).

Programs

  • Mathematica
    NestList[Mod[13^13*#, 2^59] &, 1, 20] (* Paolo Xausa, Jun 11 2025 *)

Formula

a(n) = 13^13 * a(n-1) mod 2^59.