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.
%I A096556 #13 Aug 29 2024 12:01:43 %S A096556 0,453816693,2013878382,1461722811,653338732,1830525137,1741773690, %T A096556 526418231,109789464,1577774445,1454795974,1716389619,180917764, %U A096556 1381854025,70154322,301698031,2068689712,1594166885,1923590686,579939371,2056610972,914297537,1800695338,1283998631 %N A096556 Consecutive internal states of the linear congruential pseudo-random number generator used in the Watcom FORTRAN Function URAND when started with SEED=0. %H A096556 Alois P. Heinz, <a href="/A096556/b096556.txt">Table of n, a(n) for n = 1..10000</a> %H A096556 Open Watcom, <a href="http://www.openwatcom.org/">Sybase Watcom C/C++ and FORTRAN compiler</a>. %H A096556 <a href="/index/Ps#PRN">Index entries for sequences related to pseudo-random numbers</a>. %F A096556 a(1)=0, a(n) = ( 2147437301 * a(n-1) + 453816693 ) mod 2^31. The sequence is periodic with period length 2^31. %p A096556 a:= proc(n) option remember; `if`(n<2, 0, %p A096556 irem(2147437301 * a(n-1) +453816693, 2147483648)) %p A096556 end: %p A096556 seq(a(n), n=1..30); # _Alois P. Heinz_, Jun 10 2014 %t A096556 NestList[Mod[#*2147437301 + 453816693, 2^31] &, 0, 50] (* _Paolo Xausa_, Aug 29 2024 *) %Y A096556 Cf. A096550-A096561 other pseudo-random number generators. %K A096556 nonn %O A096556 1,2 %A A096556 _Hugo Pfoertner_, Jul 20 2004