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!)
A047387 Numbers that are congruent to {1, 2, 5} mod 7. 1
1, 2, 5, 8, 9, 12, 15, 16, 19, 22, 23, 26, 29, 30, 33, 36, 37, 40, 43, 44, 47, 50, 51, 54, 57, 58, 61, 64, 65, 68, 71, 72, 75, 78, 79, 82, 85, 86, 89, 92, 93, 96, 99, 100, 103, 106, 107, 110, 113, 114, 117, 120, 121, 124, 127, 128, 131, 134, 135, 138, 141 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
G.f.: x*(1+x+3*x^2+2*x^3)/((1+x+x^2)*(x-1)^2). - R. J. Mathar, Dec 05 2011
From Wesley Ivan Hurt, Jun 09 2016: (Start)
a(n) = a(n-1) + a(n-3) - a(n-4) for n>1.
a(n) = 7*n/3-2+4*sin(2*n*Pi/3)/(3*sqrt(3)).
a(3k) = 7k-2, a(3k-1) = 7k-5, a(3k-2) = 7k-6. (End)
MAPLE
A047387:=n->7*n/3-2+4*sin(2*n*Pi/3)/(3*sqrt(3)): seq(A047387(n), n=1..100); # Wesley Ivan Hurt, Jun 09 2016
MATHEMATICA
Select[Range[200], MemberQ[{1, 2, 5}, Mod[#, 7]]&] (* or *) LinearRecurrence[ {1, 0, 1, -1}, {1, 2, 5, 8}, 90] (* Harvey P. Dale, Jun 05 2014 *)
PROG
(Magma) [n : n in [0..150] | n mod 7 in [1, 2, 5]]; // Wesley Ivan Hurt, Jun 09 2016
CROSSREFS
Sequence in context: A183234 A108968 A289628 * A063282 A276882 A045928
KEYWORD
nonn,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 6 14:37 EDT 2024. Contains 372294 sequences. (Running on oeis4.)