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

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A061776 Start with a single triangle; at n-th generation add a triangle at each vertex, allowing triangles to overlap; sequence gives number of triangles in n-th generation. 3
1, 3, 6, 12, 18, 30, 42, 66, 90, 138, 186, 282, 378, 570, 762, 1146, 1530, 2298, 3066, 4602, 6138, 9210, 12282, 18426, 24570, 36858, 49146, 73722, 98298, 147450, 196602, 294906, 393210, 589818, 786426, 1179642, 1572858, 2359290 (list; graph; refs; listen; history; internal format)
OFFSET

0,2

REFERENCES

R. Reed, The Lemming Simulation Problem, Math. in School, 3 (#6, Nov. 1974), 5-6.

FORMULA

Explicit formula given in Maple line.

MAPLE

A061776 := proc(n) if n mod 2 = 0 then 6*(2^(n/2)-1); else 3*(2^((n-1)/2)-1)+3*(2^((n+1)/2)-1); fi; end; # for n >= 1

MATHEMATICA

a[0]=1; a[n_/; EvenQ[n]]:=6*(2^(n/2)-1); a[n_/; OddQ[n]] := 3*(2^((n-1)/2)-1) + 3*(2^((n+1)/2)-1); a /@ Range[0, 37] (* From Jean-François Alcover, Apr 22 2011, after Maple program *)

CROSSREFS

A061777 gives total population of triangles at n-th generation.

Sequence in context: A116958 A006156 A171370 * A074899 A180622 A125851

Adjacent sequences:  A061773 A061774 A061775 * A061777 A061778 A061779

KEYWORD

nonn,nice,easy

AUTHOR

N. J. A. Sloane (njas(AT)research.att.com), R. K. Guy, Jun 23 2001

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 07:10 EST 2012. Contains 205874 sequences.