OFFSET
1,2
COMMENTS
It follows from the Mingarelli reference that this number is irrational.
LINKS
Angelo B. Mingarelli, Abstract factorials of arbitrary sets of integers, arXiv:0705.4299 [math.NT], 200-2012.
EXAMPLE
1.6917992098217123513392618067876318698236937629258191345569...
MAPLE
Digits := 60 : A092143 := proc(n) option remember ; local dvs ; if n = 1 then 1 ; else dvs := numtheory[divisors](n) ; A092143(n-1)*mul(i, i=dvs) ; fi ; end: A129635 := proc(isum) a := 0.0 ; for i from 1 to isum do a := a+1.0/A092143(i) ; print(evalf(a)) ; od ; RETURN(a) ; end: A129635(200) ; # R. J. Mathar, Sep 02 2007
MATHEMATICA
digits = 105; A092143[m_] := For[n = k = 1, k <= m, k++, Do[n = n*d, {d, Divisors[k]}]; If[k == m, Return[n]]] ; rd[j_] := rd[j] = RealDigits[ N[ Sum[ 1/A092143[m], {m, 1, 2^j}], digits]][[1]]; rd[j = 4]; While[ rd[j] != rd[j - 1], j++]; rd[j] (* Jean-François Alcover, Oct 30 2012 *)
CROSSREFS
KEYWORD
AUTHOR
Jonathan Vos Post, May 31 2007
EXTENSIONS
More terms from R. J. Mathar, Sep 02 2007
Edited by N. J. A. Sloane, Sep 16 2007 and May 06 2008
More digits from R. J. Mathar, Jul 12 2009
STATUS
approved