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

Logo
Hints
(Greetings fromThe On-Line Encyclopedia of Integer Sequences!)
A063490 a(n) = (2*n - 1)*(7*n^2 - 7*n + 6)/6. 22
1, 10, 40, 105, 219, 396, 650, 995, 1445, 2014, 2716, 3565, 4575, 5760, 7134, 8711, 10505, 12530, 14800, 17329, 20131, 23220, 26610, 30315, 34349, 38726, 43460, 48565, 54055, 59944, 66246, 72975, 80145, 87770, 95864, 104441, 113515 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
FromOmar E. Pol,Oct 23 2019: (Start)
a(n) is also the sum of terms that are in the n-th finite row and in the n-th finite column of the square [1,n]x[1,n] of the natural number arrayA000027;e.g., the [1,3]x[1,3] square is
1..3..6
2..5..9
4..8..13,
so that a(1) = 1, a(2) = 2 + 3 + 5 = 10, a(3) = 4 + 6 + 8 + 9 + 13 = 40.
Hence the partial sums giveA185505.(End)
LINKS
Hyunsoo Cho, JiSun Huh, Hayan Nam, and Jaebum Sohn,Combinatorics on bounded free Motzkin paths and its applications,arXiv:2205.15554 [math.CO], 2022. (See p. 14).
T. P. Martin,Shells of atoms,Phys. Rep., 273 (1996), 199-241, eq. (10).
FORMULA
G.f.: x*(1+x)*(1+5*x+x^2)/(1-x)^4. -Colin Barker,Mar 02 2012
a(n) = Sum_{k = n^2-2*n+2..n^2}A064788(k). -Lior Manor,Jan 13 2013
FromG. C. Greubel,Dec 01 2017: (Start)
a(n) = 4*a(n-1) - 6*a(n-2) + 4*a(n-3) - a(n-4).
E.g.f.: (-6 + 12*x + 21*x^2 + 14*x^3)*exp(x)/6 + 1. (End)
MATHEMATICA
Table[(2*n-1)*(7*n^2-7*n+6)/6, {n, 1, 50}] (* or *) LinearRecurrenc[{4, -6, 4, -1}, {1, 10, 40, 105}, 50] (*G. C. Greubel,Dec 01 2017 *)
PROG
(PARI) { for (n=1, 1000, write( "b063490.txt", n, "", (2*n - 1)*(7*n^2 - 7*n + 6)/6) ) } \\Harry J. Smith,Aug 23 2009
(PARI) x='x+O('x^30); Vec(serlaplace((-6 + 12*x + 21*x^2 + 14*x^3 )*exp(x)/6 + 1)) \\G. C. Greubel,Dec 01 2017
(Magma) [(2*n-1)*(7*n^2-7*n+6)/6: n in [1..30]]; //G. C. Greubel,Dec 01 2017
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
N. J. A. Sloane,Aug 01 2001
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 byThe OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified September 4 20:04 EDT 2024. Contains 375685 sequences. (Running on oeis4.)