A223701 Irregular triangle of numbers k such that prime(n) is the largest prime factor of k^2 - 1.
3, 2, 5, 7, 17, 4, 9, 11, 19, 26, 31, 49, 161, 6, 8, 13, 15, 29, 41, 55, 71, 97, 99, 127, 244, 251, 449, 4801, 8749, 10, 21, 23, 34, 43, 65, 76, 89, 109, 111, 197, 199, 241, 351, 485, 769, 881, 1079, 6049, 19601, 12, 14, 25, 27, 51, 53, 64, 79, 129, 131, 155
Offset: 1
Examples
Irregular triangle: {3}, {2, 5, 7, 17}, {4, 9, 11, 19, 26, 31, 49, 161}, {6, 8, 13, 15, 29, 41, 55, 71, 97, 99, 127, 244, 251, 449, 4801, 8749}
Links
- Andrew Howroyd, Table of n, a(n) for n = 1..16223 (first 25 rows for primes up to 97)
- Florian Luca and Filip Najman, On the largest prime factor of x^2-1, arXiv:1005.1533 [math.NT], 2010.
- Florian Luca and Filip Najman, On the largest prime factor of x^2-1, Mathematics of Computation 80 (2011), 429-435. (Paper has errata that was posted on the MOC website.)
- Filip Najman, List of Publications Page (Adjacent to entry number 4 are links with the data files for the first 25 rows (=16223 terms) of this sequence)
Crossrefs
Programs
-
Mathematica
t = Table[FactorInteger[n^2 - 1][[-1,1]], {n, 2, 10^5}]; Table[1 + Flatten[Position[t, Prime[n]]], {n, 6}]
Comments