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.

A045775 Extension of Beatty sequence; complement of A045774.

Original entry on oeis.org

0, 5, 10, 15, 20, 28, 33, 38, 43, 51, 56, 61, 66, 74, 79, 84, 89, 97, 102, 107, 112, 117, 122, 127, 135, 140, 145, 150, 158, 163, 168, 173, 181, 186, 191, 196, 204, 209, 214, 219, 224, 229, 234, 242, 247, 252, 257, 265, 270, 275, 280, 288, 293, 298, 303
Offset: 0

Views

Author

Keywords

Comments

(s,t)-sequences; the case s=3, t=2.

References

  • Clark Kimberling, Complementary Equations, Journal of Integer Sequences, Vol. 10 (2007), Article 07.1.4.

Crossrefs

Programs

  • Mathematica
    s=3; t=2;
    mex:=First[Complement[Range[1,Max[#1]+1],#1]]&;
    a[0]=0; b[n_]:=b[n]=s*a[n]+t*n;
    a[n_]:=a[n]=mex[Flatten[Table[{a[i],b[i]},{i,0,n-1}]]];
    Table[a[n],{n,200}] (* A045774 *)
    Table[b[n],{n,200}] (* A045775 *)
    (* From Clark Kimberling, Apr 02 2011 *)

Formula

a(n) = 3*A045774(n)+2*n.