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.

A384434 Consecutive states of the linear congruential pseudo-random number generator for CUPL when started at 1.

This page as a plain text file.
%I A384434 #14 May 30 2025 11:26:39
%S A384434 1,452807053,433305513,1157650709,1180241297,1178063325,1895799737,
%T A384434 1342539237,998902817,2132481837,889231561,1166702517,2034731953,
%U A384434 992635261,553238233,124714629,1244077121,81139917,194452969,856156757,355421649,1238070557,1495123449
%N A384434 Consecutive states of the linear congruential pseudo-random number generator for CUPL when started at 1.
%C A384434 Periodic with period 2^29.
%D A384434 Zaven A. Karian and Edward J. Dudewicz, Modern Statistical Systems and GPSS Simultation (2nd ed), CRC Press, 1999 (see p. 125).
%D A384434 R. J. Walker, An Instruction Manual for CUPL: The Cornell University Programming Language, Cornell University, Ithaca, New York, 1967.
%H A384434 Sean A. Irvine, <a href="/A384434/b384434.txt">Table of n, a(n) for n = 1..10000</a>
%H A384434 <a href="/index/Ps#PRN">Index entries for sequences related to pseudo-random numbers</a>.
%F A384434 a(n) = 5^15 * a(n-1) mod 2^31 = 452807053 * a(n-1) mod 2^31.
%t A384434 NestList[Mod[5^15*#, 2^31] &, 1, 50] (* _Paolo Xausa_, May 30 2025 *)
%Y A384434 Cf. A096555.
%K A384434 nonn,easy
%O A384434 1,2
%A A384434 _Sean A. Irvine_, May 28 2025