login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 


a(n) = Fibonacci(n-1) * Fibonacci(n) * Fibonacci(n+2).
3

%I #20 Apr 05 2016 00:31:22

%S 0,3,10,48,195,840,3536,15015,63546,269280,1140535,4831632,20466720,

%T 86699067,367262090,1555748880,6590255259,27916773720,118257343984,

%U 500946159615,2122041966330,8989114051008,38078498128175,161303106631968,683290924545600

%N a(n) = Fibonacci(n-1) * Fibonacci(n) * Fibonacci(n+2).

%C An integral pentagon is a pentagon with integer sides and diagonals. There are two types of such pentagons.

%C Type B have sides A056570(n+2), A056570(n+2), A220363(n+2), A056570(n+2), A056570(n+2), and opposite diagonals a(n+2), A066258(n+2), A066258(n+2), A066258(n+2), a(n+2), for n=1,2,...

%D R. K. Guy, Unsolved Problems in Number Theory, D20.

%H Harvey P. Dale, <a href="/A220362/b220362.txt">Table of n, a(n) for n = 1..1000</a>

%H J. H. Jordan, B. E. Peterson, <a href="http://projecteuclid.org/euclid.rmjm/1181072619">Almost regular integer Fibonacci pentagons</a>, Rocky Mountain J. Math. Volume 23, Number 1 (1993), 243-247.

%F a(n) = 3*a(n-1) + 6*a(n-2) -3*a(n-3) - a(n-4); g.f.: (3x+x^2)/(1-3x-6x^2+3x^2+x^4) = x(3+x)/( (x^2-x-1)(x^2+4x-1) ). [_Ron Knott_, Jun 27 2013]

%F a(n) = 2*(-1)^n*Lucas(n-3)/25 + 3*(-1)^n*Lucas(n+1)/25 + Fibonacci(3*n+1)/5 = (1/5)*(-(-1)^n*Fibonacci(n-1) + 3*(-1)^n*Fibonacci(n) + Fibonacci(3*n+1)). - _Ehren Metcalfe_, Mar 26 2016

%t Table[Fibonacci[n - 1] * Fibonacci[n] * Fibonacci[n + 2], {n, 30}] (* _T. D. Noe_, Dec 13 2012 *)

%t #[[1]]*#[[2]]*#[[4]]&/@Partition[Fibonacci[Range[0,30]],4,1] (* _Harvey P. Dale_, Jan 16 2016 *)

%o (PARI) x='x+O('x^99); concat(0, Vec(x*(3+x)/((x^2-x-1)*(x^2+4*x-1)))) \\ _Altug Alkan_, Mar 26 2016

%K nonn

%O 1,2

%A _Michel Marcus_, Dec 12 2012

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | 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 September 24 05:38 EDT 2024. Contains 376185 sequences. (Running on oeis4.)