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

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A063401 a(n)=a(n-1)*a(n-2)*a(n-3) with a(0)=1, a(1)=2, a(2)=2. 3
1, 2, 2, 4, 16, 128, 8192, 16777216, 17592186044416, 2417851639229258349412352, 713623846352979940529142984724747568191373312, 30354201441027016733116592294117482916287606860189680019559568902170379456331382784 (list; graph; refs; listen; history; internal format)
OFFSET

0,2

COMMENTS

Current : 1,2,2,4,16,.. Expected: 1,1,2,2,4,16,.. [From Vladimir Orlovsky (4vladimir(AT)gmail.com), Nov 18 2009]

LINKS

Harry J. Smith, Table of n, a(n) for n=0,...,15

FORMULA

a(n) =2^A000073(n).

EXAMPLE

a(6)=128*16*4=8192.

MATHEMATICA

a0=1; a1=1; a2=2; lst={a0, a1, a2}; Do[AppendTo[lst, a=a0*a1*a2]; a0=a1; a1=a2; a2=a, {n, 12}]; lst [From Vladimir Orlovsky (4vladimir(AT)gmail.com), Nov 18 2009]

PROG

(PARI) { for (n = 0, 15, if (n>2, a=a1*a2*a3; a3=a2; a2=a1; a1=a, if (n==0, a=a3=1; a1=a2=2, a=2)); write("b063401.txt", n, " ", a) ) } [From Harry J. Smith (hjsmithh(AT)sbcglobal.net), Aug 20 2009]

CROSSREFS

Cf. A000301, A000308.

Sequence in context: A032318 A090753 A091788 * A168088 A168089 A171163

Adjacent sequences:  A063398 A063399 A063400 * A063402 A063403 A063404

KEYWORD

nonn

AUTHOR

Henry Bottomley (se16(AT)btinternet.com), Jul 16 2001

EXTENSIONS

Definition corrected to a(1)=2, by Harry J. Smith (hjsmithh(AT)sbcglobal.net), Aug 20 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 February 17 11:46 EST 2012. Contains 206011 sequences.