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.

A084276 Pseudo-random numbers: gcc 2.6.3 version for 32-bit integers.

This page as a plain text file.
%I A084276 #17 Jul 04 2025 12:37:05
%S A084276 1,7261,13503,15223,8047,88,29253,1572,18740,14060,25029,21260,21203,
%T A084276 8054,14922,1084,23230,9538,15465,24014,1274,13434,20285,1973,18297,
%U A084276 3025,8994,27214,8752,5869,5683,29094,24317,15766,22147,906,13626,21410,32284,13393,27934
%N A084276 Pseudo-random numbers: gcc 2.6.3 version for 32-bit integers.
%H A084276 <a href="/index/Ps#PRN">Index entries for sequences related to pseudo-random numbers.</a>
%F A084276 a(n) = floor(A385127(n + 1) / 2^16) mod 2^15. - _Sean A. Irvine_, Jun 18 2025
%o A084276 (C)
%o A084276 #include <stdio.h>
%o A084276 unsigned next= 1; int i= 0;
%o A084276 int main() { while (i++ < 37) next= next *69069 +5, printf( "%d ", (unsigned)( next >> 16) & 0x7FFF ); }
%Y A084276 Cf. A084275, A084277, A061364 (other versions).
%Y A084276 Cf. A385127 (internal state).
%K A084276 nonn,easy
%O A084276 0,2
%A A084276 _Frank Ellermann_, May 25 2003