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!)
A269590 One of the two successive approximations up to 5^n for the 5-adic integer sqrt(-4). These are the 4 mod 5 numbers (except for n=0). 14
0, 4, 14, 114, 364, 989, 13489, 13489, 169739, 560364, 2513489, 2513489, 2513489, 246654114, 3908763489, 22219310364, 52736888489, 52736888489, 3104494700989, 6919191966614 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
The other approximation for the 5-adic integer sqrt(-4) with numbers 1 (mod 5) is given in A268922. See this also for more details and references.
For the digits of this 5-adic integer sqrt(-4), that is the scaled first differences, see A269592. See also A268922 for the 5-adic numbers u and -u written from the right to the left.
LINKS
FORMULA
Recurrence for n >= 1: a(n) = modp( a(n-1) + 3*(a(n-1)^2 + 4), 5^n), n >= 2, with a(1) = 4. Here modp(a, m) is used to pick the representative of the residue class a modulo m from the smallest nonnegative complete residue system {0, 1, ... , m-1}.
a(n) = 5^n - A268922(n), n >= 1.
a(n) == Lucas(3*(5^n)) (mod 5^n). - Peter Bala, Nov 14 2022
MAPLE
with(padic): D2:=op(3, op([evalp(RootOf(x^2+4), 5, 20)][2])):
0, seq(sum('D2[k]*5^(k-1)', 'k'=1..n), n=1..20);
# alternative program
a := proc(n) option remember; if n = 1 then 4 else irem( a(n-1)^5 + 5*a(n-1)^3 + 5*a(n-1), 5^n) end if; end: seq(a(n), n = 1..20); # Peter Bala, Nov 14 2022
PROG
(PARI) a(n) = if (n==0, 0, 5^n - truncate(sqrt(-4+O(5^(n))))); \\ Michel Marcus, Mar 07 2016
CROSSREFS
Sequence in context: A343962 A283793 A048369 * A113559 A003184 A065062
KEYWORD
nonn,easy
AUTHOR
Wolfdieter Lang, Mar 02 2016
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 23 02:41 EDT 2024. Contains 371906 sequences. (Running on oeis4.)