A190482 Convex, obtuse, hexagonal lattice numbers.
7, 10, 12, 13, 14, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61
Offset: 1
Examples
For N = 2, 3, 4, 5, or 6, it is impossible to arrange N cylinders in a neat bundle with no bulges or dents, so they are not in the list. But for N = 7, six cylinders can surround a central one, so 7 is in the list. It's unclear whether 1 should be included, but the strict definition given above excludes N = 1.
Programs
-
PARI
a(n)=if(n>6,n+11,[7,10,12,13,14,16][n]) \\ Charles R Greathouse IV, Aug 26 2011
Comments