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.

A092862 "Square" of the prime sequence.

Original entry on oeis.org

3, 5, 6, 14, 16, 17, 19, 21, 22, 25, 27, 31, 32, 34, 36, 37, 41, 42, 44, 45, 48, 49, 52, 54, 57, 59, 60, 62, 64, 65, 69, 74, 75, 78, 81, 88, 90, 91, 92, 94, 97, 98, 100, 103, 104, 108, 109, 114, 118, 119, 121, 123, 124, 125, 127, 128, 129, 130, 131, 133, 135, 136, 137
Offset: 1

Views

Author

Ferenc Adorjan (fadorjan(AT)freemail.hu)

Keywords

Comments

By following the definition outlined in A092861, one can multiply a monotonic sequence by itself, thus squaring it.

Crossrefs

Programs

  • PARI
    {pow(a,n)= /*Returns the "n-th power" of monotonic sequence a */ return(mtinv(mt(a)^n)) /* the functions mt(a) and mtinv(r) are defined in A051006 and A092855, respectively */ }