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.

A384448 Consecutive states of the linear congruential pseudo-random number generator for the INMOS Transputer when started at 1.

This page as a plain text file.
%I A384448 #10 May 30 2025 11:26:42
%S A384448 1,1664525,389569705,2940799637,158984081,2862450781,3211393721,
%T A384448 1851289957,3934847009,2184914861,246739401,1948736821,2941245873,
%U A384448 4195587069,4088025561,980655621,2001863745,657792333,65284841,1282409429,3808694225,2968195997,2417331449
%N A384448 Consecutive states of the linear congruential pseudo-random number generator for the INMOS Transputer when started at 1.
%C A384448 Periodic with period 2^30.
%H A384448 Sean A. Irvine, <a href="/A384448/b384448.txt">Table of n, a(n) for n = 1..10000</a>
%H A384448 GNU Scientific Library, <a href="https://www.gnu.org/software/gsl/doc/html/rng.html">Random Number Generation</a>.
%H A384448 <a href="/index/Ps#PRN">Index entries for sequences related to pseudo-random numbers</a>.
%F A384448 a(n) = 1664525 * a(n-1) mod 2^32.
%t A384448 NestList[Mod[1664525*#, 2^32] &, 1, 50] (* _Paolo Xausa_, May 30 2025 *)
%Y A384448 Cf. A096550-A096561 other pseudo-random number generators.
%K A384448 nonn,easy
%O A384448 1,2
%A A384448 _Sean A. Irvine_, May 29 2025