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!)
A262076 The first of seven consecutive positive integers the sum of the squares of which is equal to the sum of the squares of thirteen consecutive positive integers. 4
26, 598, 90688, 1891916, 285495236, 5955760408, 898738921678, 18748731881906, 2829229839956546, 59021002008489118, 8906414637444294568, 185798095573991870996, 28037390449444799352956, 584892345845924401415728, 88261696228437590918820358 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
For the first of the corresponding thirteen consecutive positive integers, see A262077.
LINKS
FORMULA
a(n) = a(n-1)+3148*a(n-2)-3148*a(n-3)-a(n-4)+a(n-5) for n>5.
G.f.: -26*x*(x^4+22*x^3+317*x^2+22*x+1) / ((x-1)*(x^4-3148*x^2+1)).
EXAMPLE
26 is in the sequence because 26^2 + ... + 32^2 = 5915 = 15^2 + ... + 27^2.
MATHEMATICA
LinearRecurrence[{1, 3148, -3148, -1, 1}, {26, 598, 90688, 1891916, 285495236}, 20] (* Vincenzo Librandi, Sep 11 2015 *)
PROG
(PARI) Vec(-26*x*(x^4+22*x^3+317*x^2+22*x+1)/((x-1)*(x^4-3148*x^2+1)) + O(x^20))
(Magma) I:=[26, 598, 90688, 1891916, 285495236]; [n le 5 select I[n] else Self(n-1)+3148*Self(n-2)-3148*Self(n-3)-Self(n-4)+Self(n-5): n in [1..20]]; // Vincenzo Librandi, Sep 11 2015
CROSSREFS
Sequence in context: A293612 A197123 A203598 * A057010 A217636 A249863
KEYWORD
nonn,easy
AUTHOR
Colin Barker, Sep 10 2015
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 19 17:39 EDT 2024. Contains 371797 sequences. (Running on oeis4.)