|
Search: id:A064784
|
|
|
| A064784 |
|
Difference between n-th triangular number t(n) and the largest square <= t(n). |
|
+0 2
|
|
| 0, 2, 2, 1, 6, 5, 3, 0, 9, 6, 2, 14, 10, 5, 20, 15, 9, 2, 21, 14, 6, 28, 20, 11, 1, 27, 17, 6, 35, 24, 12, 44, 32, 19, 5, 41, 27, 12, 51, 36, 20, 3, 46, 29, 11, 57, 39, 20, 0, 50, 30, 9, 62, 41, 19, 75, 53, 30, 6, 66, 42, 17, 80, 55, 29, 2, 69, 42, 14, 84, 56, 27, 100, 71, 41, 10, 87, 56
(list; graph; listen)
|
|
|
OFFSET
|
1,2
|
|
|
COMMENT
|
The second differences of a(n) - (a(n)-a(n-1))-(a(n-1)-a(n-2)) - give 2, -2, -1, 6, -6, -1, -1, 12, -12, -1, 16, -16, -1 ... 82k+2, 82k-2, -1, 82k+6, 82k-6, -1, -1, 82k+12, 82k-12, -1, 82k+16, -82k-16, -1, 82k+20, -82k-20, -1, -1, 82k+26, -82k-26, -1, 82k+30, -82k-30, -1, -1, 82k+36, -82k-36, -1, 82k+40, -82k-40, -1, 82k+44, -82k-44, -1, -1, 82k+50, -82k-50, -1, 82k+54, -82k-54, -1, -1, 82k+60, -82k-60, -1, 82k+64, -82k-64, -1, -1, 82k+70, -82k-70, -1, 82k+74, -82k-74, -1, 82k+78, -82k-78, -1, -1...
|
|
LINKS
|
Harry J. Smith, Table of n, a(n) for n=1,...,1000
J. C. Lagarias, E. M. Rains and N. J. A. Sloane, The EKG sequence, Exper. Math. 11 (2002), 437-446.
Index entries for sequences related to EKG sequence
|
|
FORMULA
|
a(n) = n*(n+1)/2 - int(sqrt(n*(n+1)/2))^2.
|
|
EXAMPLE
|
n = 5: A000217(5) = 28, largest square below that is 25, so a(5) = 28-25 = 3
|
|
MAPLE
|
seq(n*(n+1)/2-floor(sqrt(n*(n+1)/2))^2, n=0..100);
|
|
PROGRAM
|
(PARI) { default(realprecision, 100); for (n=1, 1000, t=n*(n + 1)/2; a=t - floor(sqrt(t))^2; write("b064784.txt", n, " ", a) ) } [From Harry J. Smith (hjsmithh(AT)sbcglobal.net), Sep 25 2009]
|
|
CROSSREFS
|
Cf. A076816.
Sequence in context: A109152 A130469 A106381 this_sequence A108074 A127743 A125278
Adjacent sequences: A064781 A064782 A064783 this_sequence A064785 A064786 A064787
|
|
KEYWORD
|
nonn
|
|
AUTHOR
|
Jonathan Ayres (jonathan.ayres(AT)btinternet.com), Oct 20 2001
|
|
EXTENSIONS
|
Definition corrected by Harry J. Smith (hjsmithh(AT)sbcglobal.net), Sep 25 2009
Terms corrected by Harry J. Smith (hjsmithh(AT)sbcglobal.net), Sep 25 2009
|
|
|
Search completed in 0.002 seconds
|