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!)
A047496 Numbers that are congruent to {0, 2, 4, 5, 7} mod 8. 1
0, 2, 4, 5, 7, 8, 10, 12, 13, 15, 16, 18, 20, 21, 23, 24, 26, 28, 29, 31, 32, 34, 36, 37, 39, 40, 42, 44, 45, 47, 48, 50, 52, 53, 55, 56, 58, 60, 61, 63, 64, 66, 68, 69, 71, 72, 74, 76, 77, 79, 80, 82, 84, 85, 87, 88, 90, 92, 93, 95, 96, 98, 100, 101, 103 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
G.f.: x^2*(x + 1)*(x^3 + x^2 + 2)/((x-1)^2*(x^4+x^3+x^2+x+1)). [Colin Barker, Jun 22 2012]
From Wesley Ivan Hurt, Jul 31 2016: (Start)
a(n) = a(n-1) + a(n-5) - a(n-6) for n > 6, a(n) = a(n-5) + 8 for n > 5.
a(n) = (40*n - 30 - 2*(n mod 5) + 3*((n+1) mod 5) - 2*((n+2) mod 5) - 2*((n+3) mod 5) + 3*((n+4) mod 5))/25.
a(5k) = 8k-1, a(5k-1) = 8k-3, a(5k-2) = 8k-4, a(5k-3) = 8k-6, a(5k-4) = 8k-8. (End)
MAPLE
A047496:=n->8*floor(n/5)+[(0, 2, 4, 5, 7)][(n mod 5)+1]: seq(A047496(n), n=0..100); # Wesley Ivan Hurt, Jul 31 2016
MATHEMATICA
Select[Range[0, 100], MemberQ[{0, 2, 4, 5, 7}, Mod[#, 8]] &] (* Wesley Ivan Hurt, Jul 31 2016 *)
PROG
(Magma) [n : n in [0..150] | n mod 8 in [0, 2, 4, 5, 7]]; // Wesley Ivan Hurt, Jul 31 2016
CROSSREFS
Sequence in context: A020914 A195176 A195126 * A223735 A123663 A174131
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 April 23 02:53 EDT 2024. Contains 371906 sequences. (Running on oeis4.)