[go: up one dir, main page]

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!)
A249013 a(n) = floor( (n-1) * (n+4) / 10 ). 3
0, 0, 1, 2, 3, 5, 6, 8, 10, 12, 15, 17, 20, 23, 26, 30, 33, 37, 41, 45, 50, 54, 59, 64, 69, 75, 80, 86, 92, 98, 105, 111, 118, 125, 132, 140, 147, 155, 163, 171, 180, 188, 197, 206, 215, 225, 234, 244, 254, 264, 275, 285, 296, 307, 318, 330, 341, 353, 365 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,4
COMMENTS
A028557(n) without the least significant digit. - R. J. Mathar, Aug 11 2021
LINKS
FORMULA
G.f.: x^3 * (1 + x^3 - x^4) / ((1 - x)^2 * (1 - x^5)) = x^3*(1+x^3-x^4)/ ( (1-x)^3*(1+x+x^2+x^3+x^4)).
a(n) = a(-3-n) for all n in Z.
a(n) = a(n-5) + n-1 for all n in Z.
a(n) + a(n+4) = min( a(n+1) + a(n+3), a(n+2) + a(n+2) ) + 1 for all n in Z.
A249020(n) = a(n+1) + 1 for all n in Z. - Michael Somos, Jan 09 2015
EXAMPLE
G.f. = x^3 + 2*x^4 + 3*x^5 + 5*x^6 + 6*x^7 + 8*x^8 + 10*x^9 + 12*x^10 + ...
MATHEMATICA
a[ n_] := Quotient[ (n - 1) (n + 4), 10];
LinearRecurrence[{2, -1, 0, 0, 1, -2, 1}, {0, 0, 1, 2, 3, 5, 6}, 60] (* or *) CoefficientList[Series[x^2 (1 + x^3 - x^4) / ((1 - x)^2 (1 - x^5)), {x, 0, 60}], x] (* Vincenzo Librandi, Jan 10 2015 *)
PROG
(PARI) {a(n) = (n-1) * (n+4) \ 10};
(PARI) {a(n) = if( n<-1, n = -3-n); -(n<1) + polcoeff( x^3*(1 + x^3 - x^4) / ((1 - x)^2 * (1 - x^5)) + x * O(x^n), n)};
(Magma) [Floor((n-1)*(n+4)/10): n in [1..60]]; // Vincenzo Librandi, Jan 10 2015
CROSSREFS
Sequence in context: A045919 A224955 A006856 * A211964 A140199 A072190
KEYWORD
nonn,easy
AUTHOR
Michael Somos, Oct 19 2014
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 August 29 03:06 EDT 2024. Contains 375510 sequences. (Running on oeis4.)