A154536 Positive integers that can be written as the sum of a positive Pell number and twice a positive Pell number.
Keywords
Examples
For n=12 the a(12)=22 solution is 22 = P_4 + 2*P_3.
References
- R. Crocker, On a sum of a prime and two powers of two, Pacific J. Math. 36(1971), 103-107.
Links
- Zhi-Wei SUN, Table of n, a(n), n=1..179.
- D. S. McNeil, Sun's strong conjecture
- D. S. McNeil, Various and sundry: a report on Sun's conjectures
- Zhi-Wei Sun, A summary concerning my conjecture n=p+F_s+F_t
- Terence Tao, A remark on primality testing and decimal expansions, Journal of the Australian Mathematical Society 91:3 (2011), pp. 405-413.
- K. J. Wu and Z.-W. Sun, Covers of the integers with odd moduli and their applications to the forms x^m-2^n and x^2-F_{3n}/2, Math. Comp., in press. arXiv:math.NT/0702382
Programs
-
Mathematica
P[n_]:=P[n]=2*P[n-1]+P[n-2] P[0]=0 P[1]=1 i:=0 Do[Do[If[n==2*P[x]+P[y],i=i+1;Print[i," ",n]], {x,1,Max[1,Log[2,n]]},{y,1,Log[2,n]+1}]; Continue,{n,1,100000}]
Comments