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!)
A127147 Q(n,5), where Q(m,k) is defined in A127080 and A127137. 3
43, 28, 15, 4, -5, -12, -17, -20, -21, -20, -17, -12, -5, 4, 15, 28, 43, 60, 79, 100, 123, 148, 175, 204, 235, 268, 303, 340, 379, 420, 463, 508, 555, 604, 655, 708, 763, 820, 879, 940, 1003, 1068, 1135, 1204, 1275, 1348, 1423, 1500, 1579, 1660, 1743, 1828, 1915, 2004, 2095, 2188 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
COMMENTS
Numbers m such that m + 21 is a square. The product of two consecutive terms belongs to the sequence, see formula. - Klaus Purath, Oct 30 2022
REFERENCES
V. van der Noort and N. J. A. Sloane, Paper in preparation, 2007.
LINKS
FORMULA
a(n) = n^2 - 16*n + 43.
From Colin Barker, Nov 12 2014: (Start)
a(n) = 3*a(n-1) -3*a(n-2) +a(n-3).
G.f.: (43 -101*x + 60*x^2)/(1-x)^3. (End)
E.g.f.: (43 - 15*x + x^2)*exp(x). - G. C. Greubel, Aug 12 2019
From Klaus Purath, Oct 30 2022: (Start)
According to the formula a(n) = n^2 - 16*n + 43 when expanded to negative indices, a(n)*a(n+1) = a(a(n)+n) = (a(n)+n)*(a(n+1)-(n+1)) + 43.
a(n) = 2*a(n-1) - a(n-2) + 2. (End)
MAPLE
seq((n-8)^2 -21, n=0..60); # G. C. Greubel, Aug 12 2019
MATHEMATICA
CoefficientList[Series[(60x^2 -101x +43)/(1-x)^3, {x, 0, 60}], x] (* Vincenzo Librandi, Nov 12 2014 *)
(Range[0, 60] -8)^2 -21 (* G. C. Greubel, Aug 12 2019 *)
PROG
(PARI) Vec(-(60*x^2-101*x+43)/(x-1)^3 + O(x^60)) \\ Colin Barker, Nov 12 2014
(Magma) [n^2-16*n+43: n in [0..60]]; // Vincenzo Librandi, Nov 12 2014
(Sage) [(n-8)^2 -21 for n in (0..60)] # G. C. Greubel, Aug 12 2019
(GAP) List([0..60], n-> (n-8)^2 -21); # G. C. Greubel, Aug 12 2019
CROSSREFS
A row of A127080.
Sequence in context: A225210 A033363 A187088 * A298078 A291494 A051614
KEYWORD
sign,easy
AUTHOR
N. J. A. Sloane, Mar 24 2007
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 17 20:17 EDT 2024. Contains 371767 sequences. (Running on oeis4.)