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!)
A137469 Numbers with an odd number of 1's in base 5 expansion. 2
1, 5, 7, 8, 9, 11, 16, 21, 25, 27, 28, 29, 31, 35, 37, 38, 39, 40, 42, 43, 44, 45, 47, 48, 49, 51, 55, 57, 58, 59, 61, 66, 71, 76, 80, 82, 83, 84, 86, 91, 96, 101, 105, 107, 108, 109, 111, 116, 121, 125, 127, 128, 129, 131, 135, 137, 138, 139, 140, 142, 143, 144, 145 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
This is to A000069 (Odious numbers: odd number of 1's in binary expansion) as A007091 (Numbers in base 5) is to A007088 (Numbers written in base 2). Note that odd number of 1's in base 3 expansion is simply the odd numbers.
LINKS
EXAMPLE
a(18) = 40 (base 10) is in the sequence because 40 (base 10) = 130 (base 5) which has an odd number (1) of 1's ; whereas 41 is not in the sequence because 41 (base 10) = 131 (base 5) has an even number (2) of 1's.
MAPLE
isA137469 := proc(n) local a, d ; a := 0 ; for d in convert(n, base, 5) do if d =1 then a := a+1 ; fi ; od; RETURN( a mod 2 = 1 ) ; end: for n from 1 to 400 do if isA137469(n) then printf("%d, ", n) ; fi ; od: # R. J. Mathar, Apr 21 2008
MATHEMATICA
Select[Range[200], OddQ[DigitCount[ #, 5][[1]]] &] - Stefan Steinerberger, Apr 21 2008
CROSSREFS
Sequence in context: A104693 A225648 A031221 * A043353 A023726 A157724
KEYWORD
base,easy,nonn
AUTHOR
Jonathan Vos Post, Apr 20 2008
EXTENSIONS
More terms from R. J. Mathar and Stefan Steinerberger, Apr 21 2008
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 April 25 05:56 EDT 2024. Contains 371964 sequences. (Running on oeis4.)