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.

A030340 a(n)=(# 1's)-(# 2's) in first n terms of A003137.

Original entry on oeis.org

1, 0, 1, 1, 2, 3, 4, 3, 2, 2, 1, 2, 1, 0, 1, 1, 1, 2, 2, 3, 4, 4, 3, 4, 5, 5, 6, 7, 8, 9, 10, 9, 10, 9, 9, 10, 9, 10, 11, 10, 9, 8, 8, 8, 7, 7, 8, 7, 7, 6, 5, 6, 6, 5, 6, 7, 6, 7, 6, 5, 4, 4, 3, 2, 3, 2, 1, 0, 1, 1, 1, 1, 2, 2, 2, 3, 4, 4, 4, 3, 4, 4, 5, 5
Offset: 1

Views

Author

Keywords

Comments

This sequence is nonnegative: in any group of numbers with the same number of digits, the number with a 1 in a particular position always occurs before the number with a 2 in that position. In fact, 0's only occur on the last digits of (3^N)-1, where N is an integer, not the sequence index - Larry Reeves (larryr(AT)acm.org), Sep 25 2000

Crossrefs

Cf. A030339.

Programs

  • Haskell
    a030340 n = a030340_list !! (n-1)
    a030340_list = scanl1
       (\u v -> u + fromEnum (v == 1) - fromEnum (v == 2)) a003137_list
    -- Reinhard Zumkeller, Feb 21 2013

Extensions

More terms from Larry Reeves (larryr(AT)acm.org), Sep 25 2000
Some data corrected by Reinhard Zumkeller, Feb 21 2013