The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A011950 Number of Barlow packings with group P3(bar)m1(SO) that repeat after 2n-1 layers. 2
1, 3, 3, 11, 21, 39, 85, 171, 333, 683, 1364, 2715, 5461, 10923, 21813, 43687, 87381, 174699, 349525, 699051, 1397970, 2796203, 5592402 (list; graph; refs; listen; history; text; internal format)
OFFSET
3,2
LINKS
J. E. Iglesias, Enumeration of closest-packings by the space group: a simple approach, Z. Krist. 221 (2006) 237-245.
T. J. McLarnan, The numbers of polytypes in close packings and related structures, Zeits. Krist. 155, 269-291 (1981).
MAPLE
# eq (6) in Iglesias Z Krist. 221 (2006)
b := proc(p, q)
local d;
a := 0 ;
for d from 1 to min(p, q) do
if modp(p, d)=0 and modp(q, d)=0 then
ph := floor(p/2/d) ;
qh := floor(q/2/d) ;
a := a+numtheory[mobius](d)*binomial(ph+qh, ph) ;
end if ;
end do:
a ;
end proc:
# eq (17) in Iglesias Z Krist. 221 (2006)
bt := proc(p, q)
if type(p+q, 'odd') then
b(p, q) ;
else
0;
end if;
end proc:
# eq (30) in Iglesias Z Krist. 221 (2006)
A011950 := proc(n)
local a, P, p, q ;
if n = 0 then
1;
else
P := 2*n-1 ;
a :=0 ;
for q from 0 to P do
p := P-q ;
if modp(p-q, 3) = 0 and p <= q then
a := a+bt(p, q) ;
end if;
end do:
a ;
end if;
end proc:
seq(A011950(n), n=3..40) ; # R. J. Mathar, Apr 15 2024
CROSSREFS
Sequence in context: A278835 A163932 A007022 * A343465 A289883 A280564
KEYWORD
nonn,easy
AUTHOR
STATUS
approved

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 19 23:42 EDT 2024. Contains 372703 sequences. (Running on oeis4.)