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.

A248733 Number of digits in the decimal expansion of the number of partitions of 6^n.

This page as a plain text file.
%I A248733 #18 Jul 15 2024 16:35:45
%S A248733 1,2,5,14,37,94,236,584,1437,3529,8654,21210,51966,127302,311840,
%T A248733 763864,1871094,4583243
%N A248733 Number of digits in the decimal expansion of the number of partitions of 6^n.
%F A248733 A248733 = A055642 o A000041 o A000400. \\ _M. F. Hasler_, Oct 16 2014
%t A248733 f[n_] := Floor[ Log[10, PartitionsP[ 6^n]] + 1]; Table[ f@n, {n, 0, 17}]
%o A248733 (Magma) [Floor(Log(10,(NumberOfPartitions(6^n))))+1: n in [0..7]]; // _Vincenzo Librandi_, Oct 13 2014
%o A248733 (PARI) a(n) = #Str(numbpart(6^n)); \\ _Michel Marcus_, Oct 16 2014
%o A248733 (Python)
%o A248733 from sympy import npartitions
%o A248733 from gmpy2 import digits
%o A248733 def A248733(n): return len(digits(npartitions(6**n))) # _Chai Wah Wu_, Jul 15 2024
%Y A248733 Cf. A129490, A248729, A248731, A248735, A077644, A248736, A248732.
%K A248733 nonn,base,more
%O A248733 0,2
%A A248733 _Robert G. Wilson v_, Oct 12 2014