[go: up one dir, main page]

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!)
Revision History for A225407 (Underlined text is an addition; strikethrough text is a deletion.)

Showing entries 1-10 | older changes
A225407 10-adic integer x such that x^3 = -3.
(history; published version)
#21 by Susanna Cuyler at Tue Aug 13 08:12:35 EDT 2019
STATUS

reviewed

approved

#20 by Joerg Arndt at Tue Aug 13 07:19:38 EDT 2019
STATUS

proposed

reviewed

#19 by Seiichi Manyama at Tue Aug 13 07:18:04 EDT 2019
STATUS

editing

proposed

#18 by Seiichi Manyama at Tue Aug 13 01:50:48 EDT 2019
CROSSREFS

Cf. A225402, A225404, A309600.

#17 by Seiichi Manyama at Tue Aug 13 01:47:09 EDT 2019
PROG

(Ruby)

def A225407(n)

ary = [3]

a = 3

n.times{|i|

b = (a + 7 * (a ** 3 + 3)) % (10 ** (i + 2))

ary << (b - a) / (10 ** (i + 1))

a = b

}

ary

end

p A225407(100) # Seiichi Manyama, Aug 13 2019

#16 by Seiichi Manyama at Tue Aug 13 01:40:06 EDT 2019
FORMULA

Define the sequence {b(n)} by the recurrence b(0) = 0 and b(1) = 3, b(n) = b(n-1) + 7 * (b(n-1)^3 + 3) mod 10^n for n > 1, then a(n) = (b(n+1) - b(n))/10^n. - Seiichi Manyama, Aug 13 2019

STATUS

approved

editing

#15 by Joerg Arndt at Thu Aug 08 10:16:40 EDT 2019
STATUS

proposed

approved

#14 by Seiichi Manyama at Thu Aug 08 10:13:42 EDT 2019
STATUS

editing

proposed

#13 by Seiichi Manyama at Thu Aug 08 10:13:39 EDT 2019
LINKS

Seiichi Manyama, <a href="/A225407/b225407.txt">Table of n, a(n) for n = 0..10000</a>

STATUS

approved

editing

#12 by Bruno Berselli at Tue Aug 06 10:21:54 EDT 2019
STATUS

proposed

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 August 29 09:09 EDT 2024. Contains 375511 sequences. (Running on oeis4.)