cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A374010 a(n) = (1 + (n+8)^2 + (n-9)*(-1)^n)/2.

This page as a plain text file.
%I A374010 #6 Jun 24 2024 19:22:50
%S A374010 45,47,64,70,87,97,114,128,145,163,180,202,219,245,262,292,309,343,
%T A374010 360,398,415,457,474,520,537,587,604,658,675,733,750,812,829,895,912,
%U A374010 982,999,1073,1090,1168,1185,1267,1284,1370,1387,1477,1494,1588,1605,1703,1720,1822
%N A374010 a(n) = (1 + (n+8)^2 + (n-9)*(-1)^n)/2.
%C A374010 Fill an array with the natural numbers n = 1,2,... along diagonals in alternating 'down' and 'up' directions. a(n) is row 9 of the boustrophedon-style array (see example).
%C A374010 In general, row k is given by (1+t^2+(n-k)*(-1)^t)/2, t = n+k-1. Here, k=9.
%H A374010 <a href="/index/Rec#order_05">Index entries for linear recurrences with constant coefficients</a>, signature (1,2,-2,-1,1).
%F A374010 a(n) = a(n-1) + 2*a(n-2) - 2*a(n-3) - a(n-4) + a(n-5).
%F A374010 G.f.: -x*(28*x^4+2*x^3-73*x^2+2*x+45)/((x+1)^2*(x-1)^3).
%F A374010 a(n) = A374009(n+1) - (-1)^n.
%e A374010        [ 1] [ 2] [ 3] [ 4] [ 5] [ 6] [ 7] [ 8] [ 9] [10] [11] [12]
%e A374010   [ 1]   1    3    4   10   11   21   22   36   37   55   56   78   ...
%e A374010   [ 2]   2    5    9   12   20   23   35   38   54   57   77   ...
%e A374010   [ 3]   6    8   13   19   24   34   39   53   58   76   ...
%e A374010   [ 4]   7   14   18   25   33   40   52   59   75   ...
%e A374010   [ 5]  15   17   26   32   41   51   60   74   ...
%e A374010   [ 6]  16   27   31   42   50   61   73   ...
%e A374010   [ 7]  28   30   43   49   62   72   ...
%e A374010   [ 8]  29   44   48   63   71   ...
%e A374010   [ 9]  45   47   64   70   ...
%e A374010   [10]  46   65   69   ...
%e A374010   [11]  66   68   ...
%e A374010   [12]  67   ...
%e A374010         ...
%t A374010 CoefficientList[Series[-(28*x^4 + 2*x^3 - 73*x^2 + 2*x + 45)/((x + 1)^2*(x - 1)^3), {x, 0, 50}], x]
%t A374010 k := 9; Table[(1 + (n + k - 1)^2 + (n - k) (-1)^(n + k - 1))/2, {n, 80}]
%o A374010 (Magma) [(1 + (n+8)^2 + (n-9)*(-1)^n)/2: n in [1..80]];
%Y A374010 For rows k = 1..10: A131179 (k=1) n>0, A373662 (k=2), A373663 (k=3), A374004 (k=4), A374005 (k=5), A374007 (k=6), A374008 (k=7), A374009 (k=8), this sequence (k=9), A374011 (k=10).
%Y A374010 Row 9 of the table in A056011.
%Y A374010 Column 9 of the rectangular array in A056023.
%K A374010 nonn,easy
%O A374010 1,1
%A A374010 _Wesley Ivan Hurt_, Jun 24 2024