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.

A384567 Consecutive states of the linear congruential pseudo-random number generator for the Atari ST when started at 1.

This page as a plain text file.
%I A384567 #12 Jun 22 2025 18:19:51
%S A384567 1,3141592622,1588972055,1279602700,1481914909,3913565466,2610266515,
%T A384567 1903286488,936717817,3104230086,4091513039,469042788,2999973781,
%U A384567 54420274,4053162955,3383133360,3380310769,456637022,465319559,936566716,2283027469,2613197898,63902979
%N A384567 Consecutive states of the linear congruential pseudo-random number generator for the Atari ST when started at 1.
%C A384567 Periodic with period 2^32.
%D A384567 Megamax Inc., Laser C: C Language Development System, Atari ST, 1988 (see p. 514).
%H A384567 Sean A. Irvine, <a href="/A384567/b384567.txt">Table of n, a(n) for n = 1..10000</a>
%H A384567 B. D. Ripley, <a href="https://doi.org/10.1016/0377-0427(90)90346-2">Thoughts on pseudorandom number generators</a>, J of Computational and Applied Mathematics, 31, 1 (1990), 153-163.
%H A384567 <a href="/index/Ps#PRN">Index entries for sequences related to pseudo-random numbers</a>.
%F A384567 a(n) = (3141592621 * a(n-1) + 1) mod 2^32.
%t A384567 NestList[Mod[3141592621*# + 1, 2^32] &, 1, 50] (* _Paolo Xausa_, Jun 05 2025 *)
%Y A384567 Cf. A096550-A096561 (other pseudo-random number generators).
%K A384567 nonn,easy
%O A384567 1,2
%A A384567 _Sean A. Irvine_, Jun 03 2025