A229747 Largest prime factor of 4^(2*n+1)+1.
5, 13, 41, 113, 109, 2113, 1613, 1321, 26317, 525313, 14449, 30269, 268501, 279073, 536903681, 384773, 4327489, 47392381, 231769777, 21841, 43249589, 1759217765581, 29247661, 140737471578113, 4981857697937, 1326700741, 1801439824104653, 3630105520141
Offset: 0
Keywords
Examples
For n=7, 4^(2*n+1)+1 = 1073741825 = 5*5*13*41*61*1321. So a(7)=1321.
Links
- Daniel Suteu, Table of n, a(n) for n = 0..547
Programs
-
Mathematica
Table[FactorInteger[4^(2n+1)+1][[-1,1]],{n,0,30}] (* Harvey P. Dale, Mar 10 2018 *)
-
PARI
a(n) = { f=factor(2^(2*n+1)-2^(n+1)+1); g=factor(2^(2*n+1)+2^(n+1)+1); max(f[matsize(f)[1],1], g[matsize(g)[1],1]) }
Comments