OFFSET
2,1
COMMENTS
A 1-1 deficient regular graph is one in which every vertex has the same degree as all of its neighbors except exactly one and its degree differs from the degree of this neighbor by exactly 1.
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 2..1000
FORMULA
a(2*i) = 2*i*(i+1) i=1, 2, 3, ...; a(4*i+3) = 2*(i+1)*(4*i+4) i=0, 1, 2, ...; a(4*i+5) = 4*(2*i^2+6*i+5) i=1, 2, 3, ...
Empirical G.f.: -4*x^2*(x^5-2*x^4+x^3+1) / ((x-1)^3*(x+1)*(x^2+1)). [Colin Barker, Jan 15 2013]
MATHEMATICA
a[n_?EvenQ] := n*(n+2)/2; a[n_ /; Mod[n, 4] == 3] := (n+1)^2/2; a[n_ /; Mod[n, 4] == 1] := (n^2 + 2*n + 5)/2; Table[a[n], {n, 2, 53}] (* Jean-François Alcover, Oct 10 2011 *)
CROSSREFS
KEYWORD
easy,nice,nonn
AUTHOR
Lisa R. Macon (lmacon(AT)valencia.cc.fl.us)
EXTENSIONS
More terms from Antonio G. Astudillo (afg_astudillo(AT)lycos.com), Mar 23 2003
STATUS
approved