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

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A185869 (Odd,even)-polka dot array in the natural number array A000027; read by antidiagonals. 5

%I #22 Sep 03 2016 17:09:48

%S 2,7,9,16,18,20,29,31,33,35,46,48,50,52,54,67,69,71,73,75,77,92,94,96,

%T 98,100,102,104,121,123,125,127,129,131,133,135,154,156,158,160,162,

%U 164,166,168,170,191,193,195,197,199,201,203,205,207,209,232,234,236,238,240,242,244,246,248,250,252,277,279,281,283,285,287,289,291,293,295,297,299,326,328,330,332,334,336,338,340,342,344,346,348,350,379,381,383,385,387,389,391,393,395,397,399,401,403,405

%N (Odd,even)-polka dot array in the natural number array A000027; read by antidiagonals.

%C This is the second of four polka dot arrays; see A185868.

%C row 1: A130883;

%C row 2: A100037;

%C row 3: A100038;

%C row 4: A100039;

%C col 1: A014107;

%C col 2: A033537;

%C col 3: A100040;

%C col 4: A100041;

%C diag (2,18,...): A077591;

%C diag (7,31,...): A157914;

%C diag (16,48,...): A035008;

%C diag (29,69,...): A108928;

%C antidiagonal sums: A033431;

%C antidiagonal sums: 2*(1^3, 2^3, 3^3, 4^3,...) = 2*A000578.

%C A060432(n) + n is odd if and only if n is in this sequence. - _Peter Kagey_, Feb 03 2016

%H Peter Kagey, <a href="/A185869/b185869.txt">Table of n, a(n) for n = 1..10000</a>

%F T(n,k) = 2n-1+(n+k-1)*(2n+2k-3), k>=1, n>=1.

%e Northwest corner:

%e 2....7....16...29...46

%e 9....18...31...48...69

%e 20...33...50...71...96

%e 35...52...73...98...127

%t f[n_,k_]:=2n-1+(2n+2k-3)(n+k-1);

%t TableForm[Table[f[n,k],{n,1,10},{k,1,15}]]

%t Table[f[n-k+1,k],{n,14},{k,n,1,-1}]//Flatten

%o (Haskell)

%o a185869 n = a185869_list !! (n - 1)

%o a185869_list = scanl (+) 2 $ a' 1

%o where a' n = 2 * n + 3 : replicate n 2 ++ a' (n + 1)

%o -- _Peter Kagey_, Sep 02 2016

%Y Cf. A000027 (as an array), A060432, A185868, A185870, A185871.

%K nonn,tabl

%O 1,1

%A _Clark Kimberling_, Feb 05 2011

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 by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 19 14:10 EDT 2024. Contains 371792 sequences. (Running on oeis4.)