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!)
A098364 Multiplication table of the digits of the square root of 2 read by antidiagonals. 4
1, 4, 4, 1, 16, 1, 4, 4, 4, 4, 2, 16, 1, 16, 2, 1, 8, 4, 4, 8, 1, 3, 4, 2, 16, 2, 4, 3, 5, 12, 1, 8, 8, 1, 12, 5, 6, 20, 3, 4, 4, 4, 3, 20, 6, 2, 24, 5, 12, 2, 2, 12, 5, 24, 2, 3, 8, 6, 20, 6, 1, 6, 20, 6, 8, 3, 7, 12, 2, 24, 10, 3, 3, 10, 24, 2, 12, 7, 3, 28, 3, 8, 12, 5, 9, 5, 12, 8, 3, 28, 3 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
T(n,k) = A003991(A002193(n), A002193(k)). - Michel Marcus, Nov 03 2021
EXAMPLE
Triangle begins:
1;
4,4;
1,16,1;
4,4,4,4;
...
Array begins:
1 4 1 4 2 ...
4 16 4 16 8 ...
1 4 1 4 2 ...
4 16 4 16 8 ...
2 8 2 8 4 ...
...
PROG
(PARI) sqrt2(nn) = {my(r=0, x=2, list = List(), d); for(digits=1, nn, d=0; while((20*r+d)*d <= x, d++); d--; listput(list, d); x=100*(x-(20*r+d)*d); r=10*r+d; ); Vec(list); } \\ A002193
lista(nn) = {my(dd = sqrt2(nn)); for (n=1, nn, for (k=1, n, print1(dd[k]*dd[n-k+1], ", "))); } \\ Michel Marcus, Nov 11 2021
CROSSREFS
Sequence in context: A123966 A371898 A079507 * A116866 A126280 A170986
KEYWORD
nonn,tabl,base
AUTHOR
Douglas Stones (dssto1(AT)student.monash.edu.au), Sep 04 2004
EXTENSIONS
Offset changed to 1 and a(34)=1 inserted by Georg Fischer, Nov 02 2021
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 by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 07:07 EDT 2024. Contains 371964 sequences. (Running on oeis4.)