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-2 of 2 results.

A053398 Nim-values from game of Kopper's Nim.

Original entry on oeis.org

0, 1, 1, 0, 1, 0, 2, 2, 2, 2, 0, 2, 0, 2, 0, 1, 1, 2, 2, 1, 1, 0, 1, 0, 2, 0, 1, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 3, 0, 3, 0, 3, 0, 3, 0, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 0, 1, 0, 3, 0, 1, 0, 3, 0, 1, 0, 2, 2, 2, 2, 3, 3, 3, 3, 2, 2, 2, 2, 0, 2, 0, 2, 0, 3, 0, 3, 0, 2, 0, 2, 0, 1, 1, 2, 2, 1, 1, 3, 3, 1, 1, 2, 2, 1, 1
Offset: 1

Views

Author

Keywords

Comments

Rows/columns 1-10 are A007814, A050603, A053399, A053384-A053890.
Comment from R. K. Guy: David Singmaster (zingmast(AT)sbu.ac.uk) sent me, about 5 years ago, a game he'd received from Bodo Koppers. It is played with two heaps of beans. The move is to remove one heap and split the other into two nonempty heaps. I'm not sure if Koppers invented it, or got it from elsewhere. I do not think that he analyzed it, but Singmaster did.

Crossrefs

Cf. A003986, A007814 (both edges & central terms & minima per row), A000523 (max per row), A245836 (row sums), A003987, A051775.

Programs

  • Haskell
    a053398 :: Int -> Int -> Int
    a053398 n k = a007814 $ a003986 (n - 1) (k - 1) + 1
    a053398_row n = map (a053398 n) [1..n]
    a053398_tabl = map a053398_row [1..]
    -- Reinhard Zumkeller, Aug 04 2014

Formula

a(x, y) = place of last zero bit of (x-1) OR (y-1).
T(n,k) = A007814(A003986(n-1,k-1)+1). - Reinhard Zumkeller, Aug 04 2014

A053891 Squares composed of digits {1,3,4}.

Original entry on oeis.org

1, 4, 144, 441, 1444, 1411344, 431434441, 1441113444, 11414343334144, 134433311433444, 4334114143334143111441, 14431113411144114144433444, 331413131434411141441331411344, 444341333431434111311131411343131143441
Offset: 1

Views

Author

Patrick De Geest, Mar 15 2000

Keywords

Crossrefs

Cf. A053890.

Formula

a(n) = A053890(n)^2.

Extensions

More terms from C. Ronaldo (aga_new_ac(AT)hotmail.com), Jan 04 2005
One more term from Jon E. Schoenfield, Sep 03 2006
Two more terms from Mishima's page added by Max Alekseyev, Jan 28 2012
Showing 1-2 of 2 results.