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.

A037504 Base-3 digits are, in order, the first n terms of the periodic sequence with initial period 1,2,0.

Original entry on oeis.org

1, 5, 15, 46, 140, 420, 1261, 3785, 11355, 34066, 102200, 306600, 919801, 2759405, 8278215, 24834646, 74503940, 223511820, 670535461, 2011606385, 6034819155, 18104457466, 54313372400, 162940117200, 488820351601
Offset: 1

Views

Author

Keywords

Programs

  • Mathematica
    Module[{nn=30,d},d=PadRight[{},nn,{1,2,0}];Table[FromDigits[Take[d,n],3],{n,nn}]] (* or *) LinearRecurrence[{3,0,1,-3},{1,5,15,46},30] (* Harvey P. Dale, Apr 25 2015 *)

Formula

G.f.: x*(1+2*x) / ( (x-1)*(3*x-1)*(1+x+x^2) ). - R. J. Mathar, Apr 27 2015