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!)
A371096 Array A read by upward antidiagonals in which the entry A(n,k) in row n and column k is defined by A(1, k) = 8*k-7, and A(n+1, k) = A371094(A(n, k)), n,k >= 1. 8

%I #8 May 06 2024 17:48:25

%S 1,21,9,5461,117,17,357913941,11605,213,25,1537228672809129301,

%T 72701269,87381,309,33,28356863910078205288614550619314017621,

%U 3752999689475413,91625968981,30037,405,41,9649340769776349618630915417390658987772498722136713669954798667326094136661,27043212804868893898596335048021,100743818301219097892181,760567125,79189,501,49

%N Array A read by upward antidiagonals in which the entry A(n,k) in row n and column k is defined by A(1, k) = 8*k-7, and A(n+1, k) = A371094(A(n, k)), n,k >= 1.

%e Array begins:

%e n\k| 1 2 3 4 5 6

%e ---+--------------------------------------------------------------------

%e 1 | 1, 9, 17, 25, 33, 41,

%e 2 | 21, 117, 213, 309, 405, 501,

%e 3 | 5461, 11605, 87381, 30037, 79189, 48469,

%e 4 | 357913941, 72701269, 91625968981, 760567125, 1968526677, 299193685,

%o (PARI)

%o up_to = 28;

%o A371094(n) = { my(m=1+3*n, e=valuation(m,2)); ((m*(2^e)) + (((4^e)-1)/3)); };

%o A371096sq(n,k) = if(1==n,8*k-7,A371094(A371096sq(n-1,k)));

%o A371096list(up_to) = { my(v = vector(up_to), i=0); for(a=1,oo, for(col=1,a, i++; if(i > up_to, return(v)); v[i] = A371096sq((a-(col-1)),col))); (v); };

%o v371096 = A371096list(up_to);

%o A371096(n) = v371096[n];

%Y Cf. A371094, A017077 (row 1).

%Y Every fourth column (1, 5, 9, 13, 17, ...) of array A372282.

%Y Cf. also arrays A257852, A371100 and A371102.

%K nonn,tabl,easy

%O 1,2

%A _Antti Karttunen_, Apr 21 2024

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 July 9 01:55 EDT 2024. Contains 374171 sequences. (Running on oeis4.)