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!)
A134734 First differences of A084662. 9
2, 3, 1, 5, 3, 1, 1, 1, 1, 11, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 23, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 47, 3, 1, 5, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 101, 3, 1, 1 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
REFERENCES
Eric S. Rowland, A simple prime-generating recurrence, Abstracts Amer. Math. Soc., 29 (No. 1, 2008), p. 50 (Abstract 1035-11-986).
LINKS
Eric S. Rowland, A simple prime-generating recurrence, arXiv:0710.3217 [math.NT], 2007-2008.
FORMULA
a(n) = A132199(n), n > 2. - R. J. Mathar, Mar 28 2012
MATHEMATICA
b[1] = 4; b[n_] := b[n] = b[n-1] + GCD[n, b[n-1]];
Table[b[n], {n, 104}] // Differences (* Jean-François Alcover, Sep 28 2018 *)
PROG
(Haskell)
a134734 n = a134734_list !! (n-1)
a134734_list = zipWith (-) (tail a084662_list) a084662_list
-- Reinhard Zumkeller, Nov 15 2013
CROSSREFS
See A106108 for other cross-references.
Sequence in context: A328661 A345990 A261555 * A214569 A263409 A047706
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Jan 28 2008
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 18:16 EDT 2024. Contains 371916 sequences. (Running on oeis4.)