The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A254232 Product of Perrin numbers A001608(2) * ... * A001608(n). 2
2, 6, 12, 60, 300, 2100, 21000, 252000, 4284000, 94248000, 2733192000, 106594488000, 5436318888000, 369669684384000, 33270271594560000, 3959162319752640000, 625547646520917120000, 130739458122871678080000, 36214829900035454828160000 (list; graph; refs; listen; history; text; internal format)
OFFSET
2,1
LINKS
FORMULA
a(n) ~ c * r^(n*(n+1)/2), where r = A060006 = 1.324717957244746025960908854478... is the root of the equation r^3 = r + 1, c = 0.81845731383668335747954234022593868885066763327809025622515304041339344876... .
MATHEMATICA
Table[Product[SeriesCoefficient[(3-x^2)/(1-x^2-x^3), {x, 0, k}], {k, 2, n}], {n, 2, 20}]
PROG
(Python)
A254232_list, a, b, c, d = [2], 3, 0, 2, 2
for _ in range(200):
a, b, c = b, c, a+b
d *= c
A254232_list.append(d) # Chai Wah Wu, Jan 28 2015
CROSSREFS
Sequence in context: A072489 A072487 A309875 * A335831 A189394 A182862
KEYWORD
nonn
AUTHOR
Vaclav Kotesovec, Jan 27 2015
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 15 09:20 EDT 2024. Contains 372540 sequences. (Running on oeis4.)