login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A188511
a(n) = floor(7*n/10).
3
0, 0, 1, 2, 2, 3, 4, 4, 5, 6, 7, 7, 8, 9, 9, 10, 11, 11, 12, 13, 14, 14, 15, 16, 16, 17, 18, 18, 19, 20, 21, 21, 22, 23, 23, 24, 25, 25, 26, 27, 28, 28, 29, 30, 30, 31, 32, 32, 33, 34, 35, 35, 36, 37, 37, 38, 39, 39, 40, 41, 42, 42, 43, 44, 44, 45, 46, 46, 47, 48, 49, 49, 50, 51, 51, 52, 53, 53, 54, 55, 56, 56, 57, 58, 58, 59, 60, 60, 61, 62, 63
OFFSET
0,4
MAPLE
A188511:=n->floor(7*n/10); seq(A188511(n), n=0..100); # Wesley Ivan Hurt, Feb 02 2014
MATHEMATICA
Table[Floor[7 n/10], {n, 0, 100}] (* Wesley Ivan Hurt, Feb 02 2014 *)
PROG
(PARI) a(n) = 7*n\10; \\ Michel Marcus, Feb 02 2014
(Magma) [Floor(7*n/10) : n in [0..80]]; // Wesley Ivan Hurt, Dec 02 2021
CROSSREFS
Cf. A188512.
Sequence in context: A334483 A261093 A306726 * A064488 A049472 A368131
KEYWORD
nonn,changed
AUTHOR
N. J. A. Sloane, Apr 02 2011
STATUS
approved