login
A144841
a(n) = 280*C(n,9)+10*C(n,6)+6*C(n,4)+C(n,3)+1 where C = binomial.
1
1, 1, 2, 11, 41, 121, 316, 757, 1961, 6281, 22166, 74031, 221937, 596961, 1460096, 3294761, 6945521, 13818417, 26161386, 47446611, 82880281, 140069161, 229877572, 367512861, 573882201, 877268601, 1315379326, 1937825527, 2809097761, 4012108241, 5652377096, 7862946641, 10810114657, 14700084961, 19786641106
OFFSET
1,3
COMMENTS
This was formerly conjectured to be "values of maximal number of regions obtained by joining each triple of n points on a 3-dimensional sphere (S_2) by a plane", a generalization of A000127. However, members of Sugaku_day pointed out that there could be 48 (or even 54) regions for n=5 and not 41. Those counterexamples were visualized, so the conjecture was incorrect. - Taichi Aoki, Nov 13 2025
The problem of partitioning a sphere by binomial(n,3) planes determined by n points is discussed in a thread on Math StackExchange. It appears quite plausible that the value a(5)=41 currently listed (e.g., in the OEIS entry for A144841) may indeed be too low. - Seiichi Manyama, Nov 13 2025
FORMULA
G.f.: x*(1-9*x+37*x^2-84*x^3+111*x^4-76*x^5+9*x^6+18*x^7+274*x^8-x^9)/(1-x)^10. - Colin Barker, Feb 15 2012
MATHEMATICA
A144841[n_] := 280*#[9] + 10*#[6] + 6*#[4] + #[3] + 1 & [Binomial[n, #] &];
Array[A144841, 35] (* Paolo Xausa, Nov 15 2025 *)
LinearRecurrence[{10, -45, 120, -210, 252, -210, 120, -45, 10, -1}, {1, 1, 2, 11, 41, 121, 316, 757, 1961, 6281}, 40] (* Harvey P. Dale, Dec 25 2025 *)
PROG
(Magma) function a(n) return 280*Binomial(n, 9)+10*Binomial(n, 6)+6*Binomial(n, 4)+Binomial(n, 3)+1; end function;
CROSSREFS
Cf. A000127.
Sequence in context: A062256 A378493 A024522 * A203245 A387243 A121244
KEYWORD
easy,nonn
AUTHOR
Sep, Jorik & Noud Thijssen (sep.thijssen(AT)gmail.com), Sep 22 2008
EXTENSIONS
More terms and new name using formula given from Joerg Arndt, Aug 21 2025
Edited by N. J. A. Sloane, Nov 15 2025
STATUS
approved