login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A088698 Replace 1 with 11 in binary representation of n. 3
0, 3, 6, 15, 12, 27, 30, 63, 24, 51, 54, 111, 60, 123, 126, 255, 48, 99, 102, 207, 108, 219, 222, 447, 120, 243, 246, 495, 252, 507, 510, 1023, 96, 195, 198, 399, 204, 411, 414, 831, 216, 435, 438, 879, 444, 891, 894, 1791, 240, 483 (list; graph; refs; listen; history; internal format)
OFFSET

0,2

FORMULA

a(0)=0, a(2n) = 2a(n), a(2n+1) = 4a(n) + 3.

EXAMPLE

n=9: 1001 -> 110011 = 51, so a(9) = 51.

PROG

(PARI) a(n)=if(n<1, 0, if(n%2==0, 2*a(n/2), 4*a((n-1)/2)+3))

CROSSREFS

Ordered terms plus one are in A048297.

Cf. A084471, A048678, A088697.

Sequence in context: A066107 A162276 A144615 * A105802 A066904 A059969

Adjacent sequences:  A088695 A088696 A088697 * A088699 A088700 A088701

KEYWORD

nonn,easy

AUTHOR

Ralf Stephan (ralf(AT)ark.in-berlin.de), Oct 07 2003

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 14 22:07 EST 2012. Contains 205668 sequences.