login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A173862
a(n) = A158772(n-1)/21.
6
1, 1, 1, 2, 2, 2, 4, 4, 4, 8, 8, 8, 16, 16, 16, 32, 32, 32, 64, 64, 64, 128, 128, 128, 256, 256, 256, 512, 512, 512, 1024, 1024, 1024, 2048, 2048, 2048, 4096, 4096, 4096, 8192, 8192, 8192, 16384, 16384, 16384, 32768, 32768, 32768, 65536, 65536, 65536, 131072, 131072
OFFSET
1,4
COMMENTS
Triplicated A000079. Powers of 2 repeated 3 times.
a(n) is the number of ways of partitioning the set of the first n distinct positive Fibonacci numbers into two subsets whose sums differ at most by 1. a(6) = 2: 1,2,5,8/3,13; 1,2,13/3,5,8. - Alois P. Heinz, Jun 16 2019
FORMULA
G.f. x*(1 + x + x^2)/(1 - 2*x^3). - R. J. Mathar, Nov 28 2011
MATHEMATICA
Flatten[Table[c=2^n; {c, c, c}, {n, 0, 20}]] (* Harvey P. Dale, Jul 20 2012 *)
CoefficientList[Series[x*(1 + x + x^2)/(1 - 2*x^3), {x, 0, 50}], x] (* G. C. Greubel, Apr 30 2017 *)
PROG
(PARI) a(n)=2^((n-1)\3) \\ Charles R Greathouse IV, Oct 03 2016
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Paul Curtz, Nov 26 2010
EXTENSIONS
More terms from Harvey P. Dale, Jul 20 2012
STATUS
approved