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”).

A096354
Integer part of the fourth nesting of the logarithmic integral of 10^n.
0
2, 4, 9, 19, 51, 177, 747, 3638, 19691, 115237, 716530, 4675989, 31744547, 222714791, 1606590368, 11868687555, 89506353843, 687275943030, 5361745095952, 42423407975227, 339921277226567, 2754682467870463, 22553369649557926, 186375668569345609
OFFSET
1,1
COMMENTS
m=4 in PARI below. With nesting level 7, z < 1 and Li(z) is not defined so an error occurs. This is why we take the absolute value of Li(z).
FORMULA
Let Li(n) = logarithmic integral of n. a(n) = Li(Li(Li(Li(n))))
MATHEMATICA
Floor[Nest[LogIntegral, 10^Range[30], 4]] (* Harvey P. Dale, Jun 18 2013 *)
PROG
(PARI) g(n, m) = for(x=1, n, z=10^x; for(y=1, m, z=abs(Li(z))); print1(floor(z)", ")) Li(x) = { -eint1(log(1/x)) }
CROSSREFS
Sequence in context: A076893 A176501 A324317 * A076838 A034749 A353734
KEYWORD
nonn
AUTHOR
Cino Hilliard, Jun 30 2004
EXTENSIONS
More terms from Harvey P. Dale, Jun 18 2013
STATUS
approved