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.

A208192 Number of distinct 7-colored necklaces with n beads per color.

This page as a plain text file.
%I A208192 #12 Aug 23 2015 03:49:33
%S A208192 1,720,48648960,8690922240480,2374127830286012160,
%T A208192 823940558733748910598720,333504309246734399617946903040,
%U A208192 150277870737901828652705825755721760,73288704867601350013562616043249358012160,37980016035292737119901943600678905519608160480
%N A208192 Number of distinct 7-colored necklaces with n beads per color.
%H A208192 Alois P. Heinz, <a href="/A208192/b208192.txt">Table of n, a(n) for n = 0..60</a>
%F A208192 a(n) = Sum_{d|n} phi(n/d)*(7*d)!/(d!^7*7*n) if n>0 and a(0) = 1.
%F A208192 a(n) ~ 7^(7*n-1/2) / (8 * Pi^3 * n^4). - _Vaclav Kotesovec_, Aug 23 2015
%e A208192 a(0) =   1: the empty necklace.
%e A208192 a(1) = 720: {0123456, 0123465, ..., 0654321}.
%p A208192 with(numtheory):
%p A208192 a:= n-> `if`(n=0, 1, add(phi(n/d) *(7*d)!/(d!^7 *7*n), d=divisors(n))):
%p A208192 seq(a(n), n=0..12);
%Y A208192 Column k=7 of A208183.
%Y A208192 Cf. A000010, A000142.
%K A208192 nonn
%O A208192 0,2
%A A208192 _Alois P. Heinz_, Feb 24 2012