cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A102469 Largest prime factor of numerator of Sum_{k=0...n} 1/k!, with a(0) = 1.

Original entry on oeis.org

1, 2, 5, 2, 13, 163, 103, 137, 863, 98641, 10687, 31469, 1540901, 522787, 5441, 226871807, 13619, 1276861, 414026539, 2124467, 12670743557, 838025081381, 44659157, 323895443, 337310723185584470837549, 54352957, 11301647941785046703319941, 102505951982728548829
Offset: 0

Views

Author

Jonathan Sondow, Jan 09 2005

Keywords

Comments

It appears that a(n) = A102468(n) (Smarandache number of the same numerator) except when n = 3. The largest prime factor of the corresponding denominator is A007917(n) for n > 1. Omitting the 0th term in the sum, it appears that the largest prime factor and the Kempner number A002034, of the numerator of Sum_{k=1...n} 1/k! are both equal to A096058(n).

Examples

			Sum_{k=0...3} 1/k! = 8/3 and 2 is the largest prime factor 8, so a(3) = 2.
		

Crossrefs

Programs

  • Mathematica
    FactorInteger[#][[-1,1]]&/@Numerator[Accumulate[1/Range[0,30]!]] (* Harvey P. Dale, Nov 14 2012 *)
  • PARI
    a(n) = if(n==0, return(1)); vecmax(factor(numerator(sum(k=0, n, 1/k!)))[,1]); \\ Daniel Suteu, Jun 09 2022

Formula

a(n) = A006530(A061354(n)).