OFFSET
1,1
COMMENTS
Corresponds to the only solution of the Diophantine equation 3^n = x*2^n + y*1^n with constraint 0 <= y < 2^n. [Since 3^n is odd, of course y cannot be zero.)
LINKS
Iain Fox, Table of n, a(n) for n = 1..3322 (first 500 terms from Harry J. Smith)
FORMULA
For n > 2, a(n) = 3^n mod (2^n-1). [Alex Ratushnyak, Jul 22 2012]
EXAMPLE
3^4 = 81 = 16 + 16 + 16 + 16 + 16 + 1, so a(4) = 5 + 1 = 6;
3^5 = 243 = 32 + 32 + 32 + 32 + 32 + 32 + 32 + 19*1, so a(5) = 7 + 19 = 26.
MATHEMATICA
Table[3^n - (-1 + 2^n) Floor[(3/2)^n], {n, 33}] (* Fred Daniel Kline, Nov 01 2017 *)
x[n_] := -(1/2) + (3/2)^n + ArcTan[Cot[(3/2)^n Pi]]/Pi;
y[n_] := 3^n - 2^n * x[n]; yplusx[n_] := y[n] + x[n];
Array[yplusx, 33] (* Fred Daniel Kline, Dec 21 2017 *)
f[n_] := Floor[3^n/2^n] + PowerMod[3, n, 2^n]; Array[f, 33] (* Robert G. Wilson v, Dec 27 2017 *)
PROG
(PARI) {for(n=1, 33, d=divrem(3^n, 2^n); print1(d[1]+d[2], ", "))}
(PARI) { for (n=1, 500, write("b060692.txt", n, " ", floor(3^n/2^n) + (3^n%2^n)); ) } \\ Harry J. Smith, Jul 09 2009
(Haskell)
a060692 n = uncurry (+) $ divMod (3 ^ n) (2 ^ n)
-- Reinhard Zumkeller, Jul 11 2014
CROSSREFS
KEYWORD
nonn
AUTHOR
Labos Elemer, Apr 20 2001
EXTENSIONS
Edited by Klaus Brockhaus, May 24 2003
STATUS
approved