[go: up one dir, main page]

login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

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
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
KEYWORD
nonn
AUTHOR
Vaclav Kotesovec, Jan 27 2015
STATUS
approved