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

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A164654 a(n) = 2*a(n-2) for n > 2; a(1) = 3, a(2) = 8. 6

%I

%S 3,8,6,16,12,32,24,64,48,128,96,256,192,512,384,1024,768,2048,1536,

%T 4096,3072,8192,6144,16384,12288,32768,24576,65536,49152,131072,98304,

%U 262144,196608,524288,393216,1048576,786432,2097152,1572864,4194304,3145728

%N a(n) = 2*a(n-2) for n > 2; a(1) = 3, a(2) = 8.

%C Interleaving of A007283 and A000079 without initial terms 1, 2, 4.

%C Binomial transform is A164303.

%H Vincenzo Librandi, <a href="/A164654/b164654.txt">Table of n, a(n) for n = 1..100</a>

%F a(n) = (7+(-1)^n)*2^(1/4*(2*n-5+(-1)^n)).

%F G.f.: x*(3+8*x)/(1-2*x^2).

%t With[{lst2=2^Range[0,20]},Riffle[3*lst2,8*lst2]] (* or *) LinearRecurrence[ {0,2},{3,8},50](* From Harvey P. Dale, Aug 20 2011 *)

%o (MAGMA) [ n le 2 select 5*n-2 else 2*Self(n-2): n in [1..41] ];

%o (Maxima) a[1]:3$ a[2]:8$ a[n]:=2*a[n-2]$ makelist(a[n], n, 1, 41); [Bruno Berselli, May 23 2011]

%Y Cf. A007283 (3*2^n), A000079 (powers of 2), A164303.

%K nonn

%O 1,1

%A _Klaus Brockhaus_, Aug 20 2009

%E G.f. corrected by _Klaus Brockhaus_, Sep 18 2009

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 June 20 01:41 EDT 2013. Contains 226416 sequences.