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!)
A056865 a(n) = floor(n^2/10). 13
0, 0, 0, 0, 1, 2, 3, 4, 6, 8, 10, 12, 14, 16, 19, 22, 25, 28, 32, 36, 40, 44, 48, 52, 57, 62, 67, 72, 78, 84, 90, 96, 102, 108, 115, 122, 129, 136, 144, 152, 160, 168, 176, 184, 193, 202, 211, 220, 230, 240, 250, 260, 270, 280, 291, 302, 313, 324 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,6
LINKS
FORMULA
G.f.: -x^4*(1+x^4) / ( (1+x)*(x^4-x^3+x^2-x+1)*(x^4+x^3+x^2+x+1)*(x-1)^3 ). - R. J. Mathar, Mar 08 2016
MAPLE
A056865 := proc(n)
floor(n^2/10) ;
end proc:
seq(A056865(n), n=0..100) ; # R. J. Mathar, Mar 08 2016
MATHEMATICA
Floor[Range[0, 60]^2/10] (* or *) LinearRecurrence[{2, -1, 0, 0, 0, 0, 0, 0, 0, 1, -2, 1}, {0, 0, 0, 0, 1, 2, 3, 4, 6, 8, 10, 12}, 60] (* Harvey P. Dale, Jun 29 2022 *)
PROG
(PARI) a(n) = n^2\10; \\ Michel Marcus, Mar 08 2016
CROSSREFS
Cf. A056864.
Sequence in context: A203812 A047894 A113769 * A097602 A347625 A126794
KEYWORD
nonn,easy
AUTHOR
N. J. A. Sloane, Sep 02 2000
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 25 06:35 EDT 2024. Contains 371964 sequences. (Running on oeis4.)