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.

A076684 Odd terms in A027941.

Original entry on oeis.org

1, 33, 609, 10945, 196417, 3524577, 63245985, 1134903169, 20365011073, 365435296161, 6557470319841, 117669030460993, 2111485077978049, 37889062373143905, 679891637638612257, 12200160415121876737
Offset: 0

Views

Author

Benoit Cloitre, Oct 25 2002

Keywords

Crossrefs

Programs

  • Mathematica
    a[n_] := Fibonacci[6n+3]-1
  • PARI
    a(n)=fibonacci(6*n+3)-1
    
  • PARI
    a(n)=if(n<0,0,subst(poltchebi(n)+poltchebi(n+1),x,9)/5-1)

Formula

a(n) = F(6n+3) - 1 where F(k) denotes the k-th Fibonacci number.
G.f.: (1+14x+x^2)/((1-x)(1-18x+x^2)).