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 A384550 #10 Jun 10 2025 01:17:44 %S A384550 1,2824527309,3293550121,2596709333,3445756561,3498707741,441773881, %T A384550 3935421861,1918678561,1293047149,465535305,3869281397,1895004849, %U A384550 3994946749,562125913,1620691013,3444240449,893681933,2983563369,1922648341,2453186257,3436839517,458239353 %N A384550 Consecutive states of the linear congruential pseudo-random number generator 2824527309*s mod 2^32 when started at s=1. %C A384550 Periodic with period 2^30. %H A384550 Sean A. Irvine, <a href="/A384550/b384550.txt">Table of n, a(n) for n = 1..10000</a> %H A384550 George S. Fishman, <a href="https://doi.org/10.2307/2008698">Multiplicative Congruential Random Number Generators with Modulus 2^beta: An Exhaustive Analysis for beta = 32 and a Partial Analysis for beta = 48</a>, Math. Comp., 54, 189 (1990), 331-344. %H A384550 <a href="/index/Ps#PRN">Index entries for sequences related to pseudo-random numbers</a>. %F A384550 a(n) = 2824527309 * a(n-1) mod 2^32. %p A384550 a:= proc(n) option remember; `if`(n<2, n, %p A384550 irem(2824527309*a(n-1), 2^32)) %p A384550 end: %p A384550 seq(a(n), n=1..23); # _Alois P. Heinz_, Jun 02 2025 %t A384550 NestList[Mod[2824527309*#, 2^32] &, 1, 50] (* _Paolo Xausa_, Jun 09 2025 *) %Y A384550 Cf. A384489, A384534, A384546, A384547, A384548, A384549, A384551, A384552. %K A384550 nonn,easy %O A384550 1,2 %A A384550 _Sean A. Irvine_, Jun 02 2025