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!)
A086767 Last coefficient of the last term in the numerator of the simplified expansion of the solutions of FLT for n=2 for FLT n=1,2,3,.. 0

%I #9 Mar 05 2019 00:13:09

%S 1,1,1,1,1,3,1,1,1,5,1,3,1,7,1,1,1,9,1,5,1,11,1,3,1,13,1,7,1,15,1,1,1,

%T 17,1,9,1,19,1,5,1,21,1,11,1,23,1,3,1,25,1,13,1,27,1,7,1,29,1,15,1,31,

%U 1,1,1,33,1,17,1,35,1,9,1,37,1,19,1,39,1,5,1,41,1,21,1,43,1,11,1,45,1,23

%N Last coefficient of the last term in the numerator of the simplified expansion of the solutions of FLT for n=2 for FLT n=1,2,3,..

%H Anonymous, <a href="http://mathforum.org/discuss/sci.math/t/525751">Fermat's Theorem for Pythagorean Triples</a>.

%F Integers a > b form the solution to FLT n = 2 as follows. (2ab)^2 = (a^2-b^2)^2 - (a^2+b^2)^2. The sequence is the coefficient c of the last b term in the numerator for the simplified expansion of the solution for n=2 as verification of FLT for n=1, 2, ...

%e b/a

%e 1

%e (3*a^4 + b^4)/(4*b*a^3)

%e (a^4 + b^4)/(2*b^2*a^2)

%e (5*a^8 + 10*b^4*a^4 + b^8)/(16*b^3*a^5)

%e (3*a^8 + 10*b^4*a^4 + 3*b^8)/(16*b^4*a^4)

%e (7*a^12 + 35*b^4*a^8 + 21*b^8*a^4 + b^12)/(64*b^5*a^7)

%e (a^12 + 7*b^4*a^8 + 7*b^8*a^4 + b^12)/(16*b^6*a^6)

%e (9*a^16 + 84*b^4*a^12 + 126*b^8*a^8 + 36*b^12*a^4 + b^16)/(256*b^7*a^9)

%e (5*a^16 + 60*b^4*a^12 + 126*b^8*a^8 + 60*b^12*a^4 + 5*b^16)/(256*b^8*a^8)

%e ........

%e (K + cb^m)/2^m1b^m2c^m3

%e Seq = c for integers K,b,m1,m2,m3,n = 1,2,3...

%p sigma := proc(n) local i; add(i,i=convert(n,base,2)) end:

%p a := proc(n) if n=0 or type(n,odd) then 1 else if type(iquo(n,2),odd) then n/2 else n/2^(1-sigma(n)+sigma(n-1)) fi fi end: # _Peter Luschny_, Aug 03 2009

%o (PARI) \ verification of general solution in integers \ a>b,x = 2ab,y=a^2-b^2,z=a^2+b^2 \ or FLT n=2 x^n+y^n <> z^n = (2ab)^n + (a^2-b^2)^n <> \(a^2+b^2)^n for n > 2 flt(n,a1,b1) = for(x=0,n,print(f(x,a1,b1))) f(n,a,b) = simplify(((a^2+b^2)^n - (a^2-b^2)^n)/(2*a*b)^n) coeffb(m) = { for(y=1,m, n=y; if(n%2,x=1, while(n%2==0,n=n/2); x=n; ); print1(x",") ) }

%K easy,nonn,uned

%O 0,6

%A _Cino Hilliard_, Aug 02 2003

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 18:58 EDT 2024. Contains 371798 sequences. (Running on oeis4.)