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

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A025192 2*3^(n-1), n >= 1. 53
1, 2, 6, 18, 54, 162, 486, 1458, 4374, 13122, 39366, 118098, 354294, 1062882, 3188646, 9565938, 28697814, 86093442, 258280326, 774840978, 2324522934, 6973568802, 20920706406, 62762119218, 188286357654, 564859072962, 1694577218886 (list; graph; refs; listen; history; internal format)
OFFSET

0,2

COMMENTS

Warning: there is a considerable overlap between this entry and the essentially identical A008776.

Shifts one place left when plus-convolved (PLUSCONV) with itself. a(n) = 2*Sum_{i=0..n-1} a(i) - Antti Karttunen May 15 2001

Let M = { 0, 1, ..., 2^n-1 } be the set of all n-bit numbers. Consider two operations on this set: ``sum modulo 2^n'' (+) and ``bitwise exclusive or'' (XOR). The results of these operations are correlated.

To give a numerical measure, consider the equations over M: u = x + y, v = x XOR y and ask for how many pairs (u,v) is there a solution? The answer is exactly a(n)=2*3^(n-1) for n>=1. The fraction a(n)/4^n of such pairs vanishes as n goes to infinity. - Max Alekseyev, Feb 26 2003

Number of (s(0), s(1), ..., s(2n+2)) such that 0 < s(i) < 6 and |s(i) - s(i-1)| = 1 for i = 1,2,....,2n+2, s(0) = 3, s(2n+2) = 3. - Herbert Kociemba (kociemba(AT)t-online.de), Jun 10 2004

Number of compositions of n into parts of two kinds. For a string of n objects, before the first, choose first kind or second kind; before each subsequent object, choose continue, first kind, or second kind. For example, compositions of 3 are 3; 2,1; 1,2; and 1,1,1. Using parts of two kinds, these produce respectively 2, 4, 4 and 8 compositions, 2+4+4+8 = 18. - Frank Adams-Watters, Aug 18 2006

Number of permutations of {1, 2, ..., n+1} such that no term is more than 2 larger than its predecessor. For example, a(3) = 18 because all permutations of {1, 2, 3, 4} are valid except 1423, 1432, 2143, 3142, 2314, 3214, in which 1 is followed by 4. Proof: removing (n + 1) gives a still-valid sequence. For n>=2, can insert (n + 1) either at the beginning or immediately following n or immediately following (n - 1), but nowhere else. Thus the number of such permutations triples when we increase the sequence length by 1. - Joel Lewis, Nov 14 2006

Antidiagonal sums of square array A081277 . - Philippe DELEHAM, Dec 04 2006

Equals row sums of triangle A160760 [From Gary W. Adamson, May 25 2009]

Let M = a triangle with (1, 2, 4, 8,...) as the left border and all other columns = (0, 1, 2, 4, 8,...). A025192 = lim_{n->inf} M^n, the left-shifted vector considered as a sequence. [Gary W. Adamson, Jul 27 2010]

Number of nonisomorphic graded posets with 0 and 1 and uniform hasse graph of rank n with no 3-element antichain. (Uniform used in the sense of http://arxiv.org/pdf/1010.6295.pdf.) - David Nacin, Feb 13 2012

LINKS

T. D. Noe, Table of n, a(n) for n=0..200

Fan Chung, Ron Graham, Primitive juggling sequences, Am. Math. Monthly 115 (3) (2008) 185-194

Index entries for sequences related to linear recurrences with constant coefficients, signature (3).

FORMULA

a(n) = phi[3^n] = A000010[A000244(n)]. - Labos E. (labos(AT)ana.sote.hu), Apr 14 2003

G.f.: (1-x)/(1-3x).

E.g.f.: (2*exp(3*x)+exp(0))/3. - Paul Barry, Apr 20 2003

a(0) = 1, a(n) = sum(k=0, n-1, a(k)+a(n-k-1) ) - Benoit Cloitre, Jun 24 2003

Row sums of triangle A134318 - Gary W. Adamson, Oct 19 2007

a(n) = A002326((3^n-1)/2) - Vladimir Shevelev, May 26 2008

a(1) = 2, a(n) = 3*a(n-1). [From Vincenzo Librandi, Jan 01 2011]

a(n) = lcm(a(n-1), sum(k=1..n-1, a(k))) for n >= 3. - David W. Wilson, Sep 27 2011

MAPLE

A025192 := proc(n): if n=0 then 1 else 2*3^(n-1) fi: end: seq(A025192(n), n=0..26);

MATHEMATICA

Join[{1}, 2*3^(Range[30]-1)]  (* From Harvey P. Dale, Mar 22 2011 *)

PROG

(PARI) a(n)=max(1, 2*3^(n-1)) \\ Charles R Greathouse IV, Jul 25 2011

CROSSREFS

First differences of 3^n (A000244). Other self-convolved sequences: A000108, A007460 - A007464, A061922.

Apart from initial term, same as A008776.

Cf. A134318.

A160760 [From Gary W. Adamson, May 25 2009]

Sequence in context: A179349 A179355 A179362 * A008776 A134635 A192338

Adjacent sequences:  A025189 A025190 A025191 * A025193 A025194 A025195

KEYWORD

nonn,nice,easy,eigen,changed

AUTHOR

Clark Kimberling (ck6(AT)evansville.edu)

EXTENSIONS

Additional comments from Barry E. Williams, May 27 2000

a(22) corrected by T. D. Noe, Feb 08 2008

Maple programs simplified by Johannes W. Meijer, Jun 02 2011

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 16 17:11 EST 2012. Contains 205938 sequences.