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.

A257508 Next-to-leaf vertices in binary beanstalk; Numbers n for which A257265(n) = 1.

Original entry on oeis.org

1, 3, 4, 7, 10, 11, 15, 18, 22, 23, 25, 26, 31, 34, 38, 39, 41, 46, 47, 49, 50, 54, 56, 57, 63, 66, 70, 71, 73, 78, 79, 81, 82, 86, 88, 94, 95, 97, 98, 102, 104, 105, 110, 113, 116, 117, 119, 120, 127, 130, 134, 135, 137, 142, 143, 145, 146, 150, 152, 158, 159, 161, 162, 166, 168, 169, 174, 177, 180, 181
Offset: 1

Views

Author

Antti Karttunen, May 03 2015

Keywords

Comments

Numbers n for which A257265(n) = 1, in other words, numbers n for which a descendant leaf nearest to n in binary beanstalk is one edge away.
Numbers n such that either A079559(A213723(n)) or A079559(A213724(n)) (or both) are zero.
Equal to A257507 with duplicate terms removed.

Examples

			3 is present because it has an immediate leaf-child 5, as A011371(5) = 3.
4 is present because it has an immediate leaf-child 6, as A011371(6) = 4.
10 is present because it has two immediate leaf-children, 12 and 13, as A011371(12) = A011371(13) = 10.
See also Paul Tek's illustration.
		

Crossrefs

Positions of 1's in A257265.
Subsequence of A005187.
Cf. A011371, A079559, A213723, A213724, A257507, A257509, A257512 (a subsequence).

Programs

  • Haskell
    a257508 n = a257508_list !! (n-1)
    a257508_list = filter ((== 1) . a257265) [0..]
    -- Reinhard Zumkeller, May 06 2015