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!)
A063728 a(n) = shift(a(n-1); a(n-3)), a(0)=2, a(1)=3. 0
2, 3, 6, 24, 192, 12288, 206158430208, 1294077440023230710144016724176942272334582932281947479092973291962368 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
LINKS
EXAMPLE
n=4: 192 because 24 [a(n-1)] in binary is [1, 1, 0, 0, 0] and shifted 3 [a(n-3)] places to the left becomes [1, 1, 0, 0, 0, 0, 0, 0]=192.
PROG
(PARI) a(n) = if(n<2, n+2, shift(a(n-1), a(n-3))); for(n=0, 7, print(a(n)))
CROSSREFS
Sequence in context: A160683 A099000 A032540 * A333420 A296259 A344935
KEYWORD
easy,nonn
AUTHOR
Jason Earls, Aug 12 2001
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 20 00:03 EDT 2024. Contains 371798 sequences. (Running on oeis4.)