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

A135250
a(n) = number of digits in the decimal expansion of A046967(n).
1
1, 1, 5, 32, 348, 4520, 76840, 1459949, 33578823, 973785863, 30187361738, 1116932384273, 45794227755181, 1969151793472765, 92550134293219955, 4905157117540657588, 289404269934898797687, 17653660466028826658882, 1182795251223931386145053, 83978462836899128416298742
OFFSET
1,3
COMMENTS
All the terms in A046967 are of the form 2^k.
FORMULA
From Amiram Eldar, Oct 13 2024: (Start)
a(n) = A055642(A046967(n)).
a(n) = floor(log_10(2) * A070826(n)). (End)
MATHEMATICA
a = {}; c = 2; Do[d = Length[IntegerDigits[c, 10]]; c = c^Prime[n]; AppendTo[a, d], {n, 2, 9}]; a
IntegerLength/@RecurrenceTable[{a[1]==2, a[n]==a[n-1]^Prime[n]}, a[n], {n, 9}] (* Harvey P. Dale, Jul 18 2011 *)
1 + Floor[Log10[2] * FoldList[Times, 1, Prime[Range[2, 20]]]] (* Amiram Eldar, Oct 12 2024 *)
CROSSREFS
KEYWORD
base,nonn
AUTHOR
Artur Jasinski, Nov 24 2007
EXTENSIONS
a(9) from Harvey P. Dale, Jul 18 2011
More terms from Amiram Eldar, Oct 12 2024
STATUS
approved