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 A384776 #14 Jun 11 2025 10:11:47 %S A384776 1,43272750451645,61318499813769,79085427649829,68025911569233, %T A384776 83056068785613,355731277657,91085083377589,166436801793953, %U A384776 88719099065565,111268338599465,46775231680325,152215507893489,127293649213677,121144755885561,62037290331093 %N A384776 Consecutive states of the linear congruential pseudo-random number generator 43272750451645*s mod 2^48 when started at 1. %C A384776 Periodic with period 2^46. %H A384776 Sean A. Irvine, <a href="/A384776/b384776.txt">Table of n, a(n) for n = 1..10000</a> %H A384776 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 A384776 <a href="/index/Ps#PRN">Index entries for sequences related to pseudo-random numbers</a>. %F A384776 a(n) = 43272750451645 * a(n-1) mod 2^48. %p A384776 a:= proc(n) option remember; `if`(n<2, n, %p A384776 irem(43272750451645*a(n-1), 2^48)) %p A384776 end: %p A384776 seq(a(n), n=1..16); # _Alois P. Heinz_, Jun 09 2025 %t A384776 NestList[Mod[43272750451645*#,2^48] &, 1, 30] (* _Paolo Xausa_, Jun 11 2025 *) %Y A384776 Cf. A384696, A384746, A384775, A384778, A384779, A384780. %Y A384776 Cf. A384546, A384547, A384548, A384549, A384550, A384551, A384552. %K A384776 nonn,easy %O A384776 1,2 %A A384776 _Sean A. Irvine_, Jun 09 2025