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.

Showing 1-1 of 1 results.

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

Original entry on oeis.org

1, 7261, 13503, 15223, 8047, 88, 29253, 1572, 18740, 14060, 25029, 21260, 21203, 8054, 14922, 1084, 23230, 9538, 15465, 24014, 1274, 13434, 20285, 1973, 18297, 3025, 8994, 27214, 8752, 5869, 5683, 29094, 24317, 15766, 22147, 906, 13626, 21410, 32284, 13393, 27934
Offset: 0

Views

Author

Frank Ellermann, May 25 2003

Keywords

Crossrefs

Cf. A084275, A084277, A061364 (other versions).
Cf. A385127 (internal state).

Programs

  • C
    #include 
    unsigned next= 1; int i= 0;
    int main() { while (i++ < 37) next= next *69069 +5, printf( "%d ", (unsigned)( next >> 16) & 0x7FFF ); }

Formula

a(n) = floor(A385127(n + 1) / 2^16) mod 2^15. - Sean A. Irvine, Jun 18 2025
Showing 1-1 of 1 results.