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!)
A033140 Base-4 digits are, in order, the first n terms of the periodic sequence with initial period 1,0,0. 4
1, 4, 16, 65, 260, 1040, 4161, 16644, 66576, 266305, 1065220, 4260880, 17043521, 68174084, 272696336, 1090785345, 4363141380, 17452565520, 69810262081, 279241048324, 1116964193296, 4467856773185, 17871427092740, 71485708370960 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(n) = +4*a(n-1) +a(n-3) -4*a(n-4). G.f.: x / ( (x-1)*(4*x-1)*(1+x+x^2) ). - R. J. Mathar, Jan 08 2011
MATHEMATICA
LinearRecurrence[{4, 0, 1, -4}, {1, 4, 16, 65}, 30] (* Vincenzo Librandi, Jun 21 2012 *)
Table[FromDigits[PadRight[{}, n, {1, 0, 0}], 4], {n, 30}] (* Harvey P. Dale, Apr 15 2018 *)
PROG
(Magma) I:=[1, 4, 16, 65]; [n le 4 select I[n] else 4*Self(n-1)+Self(n-3)-4*Self(n-4): n in [1..30]]; // Vincenzo Librandi, Jun 21 2012
CROSSREFS
Sequence in context: A345365 A013149 A175065 * A181879 A243872 A052927
KEYWORD
nonn,base,easy
AUTHOR
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 May 2 15:37 EDT 2024. Contains 372197 sequences. (Running on oeis4.)