[go: up one dir, main page]

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

A248735 revision #11

A248735
Number of digits in the decimal expansion of the number of partitions of 7^n.
5
1, 2, 6, 18, 51, 140, 377, 1005, 2668, 7069, 18714, 49527, 131052, 346746, 917422, 2427289
OFFSET
0,2
MATHEMATICA
f[n_] := Floor[ Log[10, PartitionsP[ 7^n]] + 1]; Table[ f@n, {n, 0, 15}]
PROG
(MAGMA) [Floor(Log(10, (NumberOfPartitions(7^n))))+1: n in [0..6]]; // Vincenzo Librandi, Oct 13 2014
(PARI) a(n) = #Str(numbpart(7^n)); \\ Michel Marcus, Oct 16 2014
KEYWORD
nonn,base,more
AUTHOR
Robert G. Wilson v, Oct 12 2014
STATUS
approved