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!)
A059728 a(0)=3; thereafter, a(n) = A002426(n+1) + Fibonacci(n-1)*(Fibonacci(n-1) + 1). 1
3, 3, 9, 21, 57, 153, 423, 1179, 3321, 9415, 26843, 76869, 220951, 637107, 1842129, 5339133, 15507641, 45127965, 131548859, 384059009, 1122835671, 3286907517, 9633053985, 28262033613, 82998088607, 243963263943, 717698981853, 2112976735749 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
LINKS
G. E. Andrews, Three aspects of partitions, Séminaire Lotharingien de Combinatoire, B25f (1990), 1 p.
L. Euler, (E326) Observationes analyticae, also reprinted in: Opera Omnia. Teubner, Leipzig, 1911, Series (1), Vol. 15, p. 54.
EXAMPLE
a(6) = F_5*(F_5+1) + A002426(7) = 30 + 393 = 423.
MATHEMATICA
b[n_] := If[n < 0, 0, 3^n Hypergeometric2F1[1/2, -n, 1, 4/3]]; Table[b[n + 1] + Fibonacci[n - 1]*(1 + Fibonacci[n - 1]), {n, 0, 50}] (* G. C. Greubel, Feb 27 2017 *)
PROG
(Magma) P<x>:=PolynomialRing(Integers()); [Max(Coefficients((1+x+x^2)^(n+1)))+(Fibonacci(n-1)*(Fibonacci(n-1)+1)): n in [0..30]]; // Vincenzo Librandi, Dec 24 2016
CROSSREFS
Sequence in context: A206492 A007683 A316220 * A257180 A184694 A215885
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Feb 09 2001
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 April 25 11:39 EDT 2024. Contains 371969 sequences. (Running on oeis4.)