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!)
A361612 Decimal expansion of sqrt(10) truncated to n places (after the decimal point). 1
3, 31, 316, 3162, 31622, 316227, 3162277, 31622776, 316227766, 3162277660, 31622776601, 316227766016, 3162277660168, 31622776601683, 316227766016837, 3162277660168379, 31622776601683793, 316227766016837933, 3162277660168379331, 31622776601683793319 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
LINKS
FORMULA
a(n) = floor(sqrt(10) * 10^n).
a(n) = A017934(2*n + 1).
a(n-1) mod 10 = A010467(n). - Chai Wah Wu, Mar 26 2023
PROG
(Python)
from math import isqrt
def A361612(n): return isqrt(10**((n<<1)|1)) # Chai Wah Wu, Mar 26 2023
CROSSREFS
Sequence in context: A089289 A011545 A011546 * A276195 A210852 A152276
KEYWORD
nonn
AUTHOR
Amit Katz, Mar 17 2023
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 27 23:22 EDT 2024. Contains 372020 sequences. (Running on oeis4.)