cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A077419 Largest Whitney number of Fibonacci lattices J(Z_n).

Original entry on oeis.org

1, 1, 1, 2, 2, 3, 5, 7, 11, 17, 26, 40, 63, 97, 153, 238, 376, 587, 931, 1458, 2317, 3640, 5794, 9124, 14545, 22951, 36631, 57904, 92512, 146461, 234205, 371281, 594169, 943045, 1510192, 2399460, 3844787, 6114555, 9802895, 15603339, 25027296
Offset: 0

Views

Author

N. J. A. Sloane, Jan 19 2003

Keywords

Comments

A051286 and A051291, interleaved. a(n) is the maximal element in the n-th row of A079487 or A123245 and in the (n+2)-th row of A078807 or A078808. - Andrey Zabolotskiy, Sep 21 2017

Programs

  • Maple
    with(FormalPowerSeries): with(LREtools): # requires Maple 2022
    gf:= (1 + 2*x + 2*x^4 - x^6 - (1-x^2)*sqrt(1 - 2*x^2 - x^4 - 2*x^6 + x^8))/(2*x*sqrt(1 - 2*x^2 - x^4 - 2*x^6 + x^8));
    re:= FindRE(gf,x,a(n));
    inits:= {seq(a(i-1)=[1,1,1,2,2,3,5,7,11,17,26,40,63,97, 153][i],i=1..14)};
    rm:=  (n+1)*a(n) +(n-2)*a(n-1) +2*(-n+1)*a(n-2) +2*(-n+1)*a(n-3) +(-n-3)*a(n-4) +(-n+8)*a(n-5) +2*(-n+6)*a(n-6) +2*(-n+7)*a(n-7) +(n-9)*a(n-8) +(n-10)*a(n-9)=0;
    minre:= MinimalRecurrence(re, a(n), inits); minrm:= MinimalRecurrence(rm, a(n), inits); # shows that Mathar's recurrence is equivalent
    f:= REtoproc(re,a(n),inits); seq(f(n),n=0..40); # Georg Fischer, Oct 22 2022
  • Mathematica
    gf[x_] = (1 + 2 x + 2 x^4 - x^6 - (1 - x^2) Sqrt[1 - 2 x^2 - x^4 - 2 x^6 + x^8])/(2 x Sqrt[1 - 2 x^2 - x^4 - 2 x^6 + x^8]);
    Table[SeriesCoefficient[gf[x], {x, 0, n}], {n, 0, 40}] (* Hugo Pfoertner, Oct 22 2022 *)

Formula

G.f.: (1 + 2 x + 2 x^4 - x^6 - (1-x^2) sqrt(1 - 2 x^2 - x^4 - 2 x^6 + x^8) )/(2x sqrt(1 - 2 x^2 - x^4 - 2 x^6 + x^8)). - Emanuele Munarini, Mar 05 2007
a(n) ~ phi^(n+2) / (5^(1/4) * sqrt(2*Pi*n)), where phi = A001622 = (1+sqrt(5))/2 is the golden ratio. - Vaclav Kotesovec, Sep 22 2017
D-finite with recurrence: (n+1)*a(n) +(n-2)*a(n-1) +2*(-n+1)*a(n-2) +2*(-n+1)*a(n-3) +(-n-3)*a(n-4) +(-n+8)*a(n-5) +2*(-n+6)*a(n-6) +2*(-n+7)*a(n-7) +(n-9)*a(n-8) +(n-10)*a(n-9)=0. - R. J. Mathar, Nov 19 2019

Extensions

More terms from Emanuele Munarini, Mar 05 2007