login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A123045 Number of frieze patterns of length n under a certain group (see Pisanski et al. for precise definition). 9

%I #20 Mar 20 2020 10:06:00

%S 0,2,6,12,39,104,366,1172,4179,14572,52740,190652,700274,2581112,

%T 9591666,35791472,134236179,505290272,1908947406,7233629132,

%U 27488079132,104715393912,399823554006,1529755308212,5864066561554,22517998136936,86607703209516

%N Number of frieze patterns of length n under a certain group (see Pisanski et al. for precise definition).

%H Alois P. Heinz, <a href="/A123045/b123045.txt">Table of n, a(n) for n = 0..1000</a>

%H Shinsaku Fujita, <a href="https://www.webfile.jp/lite-tcsj/dl.php?i=2071&amp;s=aaa3068608b595219b60">alpha-beta Itemized Enumeration of Inositol Derivatives and m-Gonal Homologs by Extending Fujita's Proligand Method</a>, Bull. Chem. Soc. Jpn. 2017, 90, 343-366; doi:10.1246/bcsj.20160369. See Table 8.

%H T. Pisanski, D. Schattschneider and B. Servatius, <a href="http://www.jstor.org/stable/27642932">Applying Burnside's lemma to a one-dimensional Escher problem</a>, Math. Mag., 79 (2006), 167-180. See F(n).

%F See Maple program.

%p with(numtheory):

%p V:=proc(n) local k, t1; t1:=0; for k in divisors(n) do t1 := t1+phi(k)*4^(n/k); od: t1; end; # A054611

%p H:=n-> if n mod 2 = 0 then (n/2)*4^(n/2); else 0; fi; # this is A018215 interleaved with 0's

%p A123045:=n-> `if`(n=0,0, (V(n)+H(n))/(2*n));

%t V[n_] := Module[{t1 = 0}, Do[t1 = t1 + EulerPhi[k] 4^(n/k), {k, Divisors[n]}]; t1];

%t H[n_] := If[Mod[n, 2] == 0, (n/2) 4^(n/2), 0];

%t a[n_] := If[n == 0, 0, (V[n] + H[n])/(2n)];

%t a /@ Range[0, 26] (* _Jean-François Alcover_, Mar 20 2020, from Maple *)

%Y Cf. A054611, A018215.

%Y The 8 sequences in Table 8 of Fujita (2017) are A053656, A000011, A256216, A256217, A123045, A283846, A283847, A283848.

%K nonn

%O 0,2

%A _N. J. A. Sloane_, Nov 11 2006

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 10 11:28 EDT 2024. Contains 372387 sequences. (Running on oeis4.)