login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A081606 Numbers having at least one 1 in their ternary representation. 10
1, 3, 4, 5, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19, 21, 22, 23, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 55, 57, 58, 59, 61, 63, 64, 65, 66, 67, 68, 69, 70, 71, 73, 75, 76, 77, 79, 81, 82, 83, 84, 85, 86 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Complement of A005823.
Integers m such that central Delannoy number A001850(m) == 0 (mod 3). - Emeric Deutsch and Bruce E. Sagan, Dec 04 2003
Integers m such that A026375(m) == 0 (mod 3). - Fabio Visonà, Aug 03 2023
LINKS
Johann Cigler, Some elementary observations on Narayana polynomials and related topics, arXiv:1611.05252 [math.CO], 2016. See p.25.
MATHEMATICA
Select[Range[100], DigitCount[#, 3, 1]>0&] (* Harvey P. Dale, Nov 26 2022 *)
PROG
(Python)
from itertools import count, islice
def A081606_gen(): # generator of terms
a = 0
for n in count(1):
b = int(bin(n)[2:], 3)<<1
yield from range(a+1, b)
a = b
A081606_list = list(islice(A081606_gen(), 30)) # Chai Wah Wu, Oct 13 2023
CROSSREFS
Sequence in context: A180152 A162610 A155935 * A079945 A283736 A039017
KEYWORD
nonn,base
AUTHOR
Reinhard Zumkeller, Mar 23 2003
EXTENSIONS
More terms from Emeric Deutsch and Bruce E. Sagan, Dec 04 2003
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 7 12:11 EDT 2024. Contains 372303 sequences. (Running on oeis4.)