login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A138961
a(n) = largest prime divisor of A138957(n).
6
1, 3, 41, 617, 823, 643, 9721, 14593, 3803, 14405693, 10939223, 4156374407, 2663693, 5603770631, 1221751714624799, 287108811653770498027, 74103167823547, 11843077531813991, 726216405947772436185983423, 769725127, 18274551225153265813469
OFFSET
1,2
COMMENTS
For smallest prime divisors see A138960.
LINKS
MATHEMATICA
a = {}; b = {}; Do[w = RealDigits[n]; w = First[w]; Do[AppendTo[a, w[[Length[w] - k + 1]]], {k, 1, Length[w]}]; p = FromDigits[a]; AppendTo[b, First[Last[FactorInteger[p]]]], {n, 1, 18}]; b
A137957[n_] := FromDigits[Flatten[Reverse /@ IntegerDigits[Range[n]]]];
Table[First[Last[FactorInteger[A137957[n]]]], {n, 39}] (* Robert Price, May 10 2019 *)
KEYWORD
nonn,base
AUTHOR
Artur Jasinski, Apr 04 2008
STATUS
approved